<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Xenophane&#039;s Blog</title>
	<link>http://www.xipher.dk/WordPress</link>
	<description>Stuff that I do!</description>
	<lastBuildDate>Wed, 08 Sep 2010 20:22:40 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.1" -->

	<item>
		<title>Translate Service DACL&#8217;s</title>
		<description><![CDATA[There was a post on the Minasi forum, where someone was trying to check which users had start/stop permissions on a given server. I knew SC would give the results, but it returns it in DACL format, which as far from readable by humans&#8230; So since I had some time to pass I decided to [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=470</link>
			</item>
	<item>
		<title>Account lockout continued</title>
		<description><![CDATA[I considered putting this in the script I wrote for checking Services/Scheduled Tasks/COM+ objects, but it just gave me too much output, so I decided to put this in a separate script, and tried to put a GUI around it, since it has been a while since I have opened Primal Forms. The script takes [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=468</link>
			</item>
	<item>
		<title>My account keeps getting locked out, where did I use it ??</title>
		<description><![CDATA[A few weeks ago my admin account kept getting locked out, after I had changed my password.. So I assumed I had used it somewhere to either run a service or a scheduled task on a test server. But where??? So I decided to write a little PowerShell script to help me find out where, [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=464</link>
			</item>
	<item>
		<title>Export-xls Powershell script to export to XLS</title>
		<description><![CDATA[This looks very promising, going to give it a spin tomorrow when I get to work http://www.lucd.info/2010/05/29/beyond-export-csv-export-xls/]]></description>
		<link>http://www.xipher.dk/WordPress/?p=436</link>
			</item>
	<item>
		<title>Output a sortable HTML table</title>
		<description><![CDATA[A while back I posted a script that would take whatever input it got, into a sortable HTML table in a file. Last night my family was here, and they wanted to see the Eurovision song contest thing, so I had some time to rewrite the script into a PowerShell V2 Advanced function, that supports [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=430</link>
			</item>
	<item>
		<title>PowerShell presentation from 2010 Minasi Conference</title>
		<description><![CDATA[Here is my presentation from the 2010 Minasi conference. Presentation]]></description>
		<link>http://www.xipher.dk/WordPress/?p=426</link>
			</item>
	<item>
		<title>Remoting examples from my presentation</title>
		<description><![CDATA[Example #1 #Sessions #Single Session $Session = New-PSSession -ComputerName &#34;computername&#34; #Multiple Sessions $Session = New-PSSession -ComputerName &#34;comp1&#34;,&#34;comp2&#34;..... #Remove all Sessions Remove-PSSession * #Remove Named Session Remove-PSSession $Session #Using $session Invoke-Command {ipconfig} -Session $Session Enter-PSSession -Session $session Example #2 $session = New-PSSession -ComputerName &#34;compname&#34; Invoke-Command {Import-Module ActiveDirectory} -Session $session Import-PSSession -Session $session -Module ActiveDirectory -Prefix &#34;ctn&#34; [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=420</link>
			</item>
	<item>
		<title>Quest AD Cmdlet examples from my Presentation</title>
		<description><![CDATA[Example #1 List users that expires within X days $DaysToExpire = 14 $MaxPassAge = (Get-QADObject (Get-QADRootDSE).defaultNamingContextDN).MaximumPasswordAge.days [array]$a = Get-QADUser -Enabled -PasswordNeverExpires:$false -SizeLimit 0 -Email * &#124;Select-Object Name,Email,@{Name=&#34;Expires&#34;;Expression={ $MaxPassAge - $_.PasswordAge.days }} &#124; where {$_.Expires -lt 0} &#124; Sort-Object expires Example #2 Locate that Hyper-V Host Get-QADComputer &#124; Where {$_.OSname -match &#34;2008&#34;} &#124; % { Get-Service [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=417</link>
			</item>
	<item>
		<title>.Net Examples from Presentation</title>
		<description><![CDATA[Example #1 (From Lee Holmes&#8217; Powershell cookbook) &#8220;Compile C# code on the fly&#8221; $code =@&#039; using System.Management.Automation; [Cmdlet(&#34;Write&#34;, &#34;InputObject&#34;)] public class MyWriteInputObjectCmdlet : Cmdlet { [Parameter] public string Parameter1; [Parameter(Mandatory = true, ValueFromPipeline=true)] public string InputObject; protected override void ProcessRecord() { if (Parameter1 != null) WriteObject(Parameter1 + &#34;:&#34; + InputObject); else WriteObject(InputObject); } } &#039;@ [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=414</link>
			</item>
	<item>
		<title>Profile Examples from Presentation</title>
		<description><![CDATA[Here are some of the scripts that I used during the demonstration in VA Beach. Profiles: Example #1 function prompt { &#34;Xenophane &#34; + $(get-location) + &#34;&#62;&#34; } Example #2 function prompt { &#34;Processes &#34; + (Get-Process).Count+ &#34; &#34; + $(get-location) + &#34;&#62; &#34; } Example #3 (Example taken from website) function Prompt { $id [...]]]></description>
		<link>http://www.xipher.dk/WordPress/?p=411</link>
			</item>
</channel>
</rss>
