<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Exceptional Geeks &#187; PowerShell</title>
	<atom:link href="http://exceptionalgeeks.com/blog/tag/powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://exceptionalgeeks.com</link>
	<description></description>
	<lastBuildDate>Wed, 31 Mar 2010 18:44:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Looking To Learn PowerShell?</title>
		<link>http://exceptionalgeeks.com/bi-curious/2010/02/10/looking-to-learn-powershell/</link>
		<comments>http://exceptionalgeeks.com/bi-curious/2010/02/10/looking-to-learn-powershell/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:21:33 +0000</pubDate>
		<dc:creator>Pierre LaFromboise</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Quick Reference]]></category>

		<guid isPermaLink="false">http://3.73</guid>
		<description><![CDATA[Microsoft recently released an updated version of the PowerShell Quick Reference Guide. Essentially, it is a printable booklet that has an overview of commonly used PowerShell commands. So, if you&#8217;re learning PowerShell or just need a helpful reminder, check it out. By the way, I cannot stress enough how useful PowerShell can be when working [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft recently released an updated version of the <a href="http://www.microsoft.com/downloads/details.aspx?displaylang=en&amp;FamilyID=df8ed469-9007-401c-85e7-46649a32d0e0" target="_blank">PowerShell Quick Reference Guide</a>. Essentially, it is a printable booklet that has an overview of commonly used PowerShell commands. So, if you&#8217;re learning PowerShell or just need a helpful reminder, check it out.</p>
<p>By the way, I cannot stress enough how useful PowerShell can be when working in a Windows Server environment. It really is worth learning even if it isn&#8217;t something you plan on using on a daily basis. If you don&#8217;t know it, now is a good time to start!</p>
]]></content:encoded>
			<wfw:commentRss>http://exceptionalgeeks.com/bi-curious/2010/02/10/looking-to-learn-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell Snippet: Installed Applications</title>
		<link>http://exceptionalgeeks.com/bi-curious/2009/10/23/powershell-snippet-installed-applications/</link>
		<comments>http://exceptionalgeeks.com/bi-curious/2009/10/23/powershell-snippet-installed-applications/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 01:29:44 +0000</pubDate>
		<dc:creator>Pierre LaFromboise</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://3.50</guid>
		<description><![CDATA[I am finally getting around to installing Windows 7 on my laptop. Before I wipe everything I wanted to have an idea of what I currently have installed. So, I put together a little PowerShell script: Get-WMIObject Win32_product &#124; sort-object vendor &#124; format-table name, version, vendor, caption -autosize &#124; out-file installed.txt -width 250 It is [...]]]></description>
			<content:encoded><![CDATA[<p>I am finally getting around to installing Windows 7 on my laptop. Before I wipe everything I wanted to have an idea of what I currently have installed. So, I put together a little PowerShell script:</p>
<pre class="brush: powershell; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;">Get-WMIObject Win32_product | sort-object vendor | format-table name, version, vendor, caption -autosize | out-file installed.txt -width 250</pre>
<p>It is a pretty simple example. It uses the <a href="http://msdn.microsoft.com/en-us/library/aa394378(VS.85).aspx" target="_blank">Win32_product</a> WMI class to get a list of installed application. I then <a href="http://technet.microsoft.com/en-us/library/dd347688.aspx" target="_blank">sort</a> by vendor, <a href="http://technet.microsoft.com/en-us/library/dd315255.aspx" target="_blank">format</a> as a table, and <a href="http://technet.microsoft.com/en-us/library/dd315303.aspx" target="_blank">output</a> to a text file. As I said, pretty simple.</p>
]]></content:encoded>
			<wfw:commentRss>http://exceptionalgeeks.com/bi-curious/2009/10/23/powershell-snippet-installed-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
