<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>PowerShell Ponderings</title>
	<atom:link href="http://andrwwatt.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrwwatt.wordpress.com</link>
	<description>Pondering the power of PowerShell</description>
	<lastBuildDate>Fri, 19 May 2006 09:06:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andrwwatt.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>PowerShell Ponderings</title>
		<link>http://andrwwatt.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andrwwatt.wordpress.com/osd.xml" title="PowerShell Ponderings" />
	<atom:link rel='hub' href='http://andrwwatt.wordpress.com/?pushpress=hub'/>
		<item>
		<title>What is Windows PowerShell?</title>
		<link>http://andrwwatt.wordpress.com/2006/05/19/what-is-windows-powershell/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/19/what-is-windows-powershell/#comments</comments>
		<pubDate>Fri, 19 May 2006 09:04:01 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - misc]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/19/what-is-windows-powershell/</guid>
		<description><![CDATA[One of the first question on the microsoft.public.windows.powershell newsgroup was &#34;What is Windows PowerShell?&#34;. Windows PowerShell is a new Windows command shell, designed to provide a new, more flexible, more powerful command shell than the current Windows command shell based on CMD.exe. It is designed to produce a more efficient command line experience for Windows [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=10&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the first question on the microsoft.public.windows.powershell newsgroup was &quot;What is Windows PowerShell?&quot;.</p>
<p>Windows PowerShell is a new Windows command shell, designed to provide a new, more flexible, more powerful command shell than the current Windows command shell based on CMD.exe. It is designed to produce a more efficient command line experience for Windows administrators and power users.</p>
<p>Windows PowerShell is based on the .NET Framework. It uses object-based pipelines to allow you to combine commands to produce useful results.</p>
<p>Windows PowerShell is also a powerful scripting language. It uses cmdlets (pronounced command-lets) which can be composed in pipelines. Each step in a pipeline is separated by the | character. For example, to find all running services on your machine use the following command:</p>
<p><b>get-service | where-object {$_.status -eq &quot;running&quot;}</b></p>
<p>This pipeline has two steps. In the first step you use the <b>get-service</b> cmdlet to retrieve information about all services on the local machine. In the second step you use the <b>where-object</b> cmdlet to filter the objects from the first pipeline step. The code in the curly brackets, <b>{$_.status -eq &quot;running&quot;}</b>, tests whether the value of the status property of the current object, <b>$_</b>, equals <b>running</b>. If it does then the object is passed to an implicit third step in the pipeline which displays the results. Objects whose <b>status </b>property does not equal <b>running</b> are discarded.<br />
Pipelines can have many steps to, for example, allow you to filter, sort, group objects.</p>
<p>Results can be displayed using the default formatter or you can take more control of how output is displayed by using formatting cmdlets such as the <b>format-table</b> and <b>format-list</b> cmdlets.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=10&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/19/what-is-windows-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>The PowerShell public newsgroup has been set up.</title>
		<link>http://andrwwatt.wordpress.com/2006/05/19/the-powershell-public-newsgroup-has-been-set-up/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/19/the-powershell-public-newsgroup-has-been-set-up/#comments</comments>
		<pubDate>Fri, 19 May 2006 08:30:31 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - newsgroups]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/19/the-powershell-public-newsgroup-has-been-set-up/</guid>
		<description><![CDATA[There is now a functioning Windows PowerShell public newsgroup. It&#39;s called microsoft.public.windows.powershell. It&#39;s on the msnews.microsoft.com news server. Point your newsreader and start reading and posting!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=9&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is now a functioning Windows PowerShell public newsgroup.</p>
<p>It&#39;s called microsoft.public.windows.powershell.</p>
<p>It&#39;s on the msnews.microsoft.com news server.</p>
<p>Point your newsreader and start reading and posting!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=9&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/19/the-powershell-public-newsgroup-has-been-set-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>Coping with a PowerShell naming clash</title>
		<link>http://andrwwatt.wordpress.com/2006/05/13/coping-with-a-powershell-naming-clash/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/13/coping-with-a-powershell-naming-clash/#comments</comments>
		<pubDate>Sat, 13 May 2006 16:32:56 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - Aliases]]></category>
		<category><![CDATA[Powershell - Cmdlets]]></category>
		<category><![CDATA[PowerShell - Functions]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/13/coping-with-a-powershell-naming-clash/</guid>
		<description><![CDATA[Naming clashes are something I expect to increase in frequency when PowerShell starts to be used more widely. I thought I would show you how to solve some categories of naming clashes. I will deal here with some of the situations that can arise when naming functions using names similar to cmdlets, that is verb-noun. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=8&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Naming clashes are something I expect to increase in frequency when PowerShell starts to be used more widely. I thought I would show you how to solve some categories of naming clashes. I will deal here with some of the situations that can arise when naming functions using names similar to cmdlets, that is <i>verb-noun</i>.</p>
<p>The situation can, potentially, become really complex so I will deal in this post only with some simple situations.</p>
<p>The name of a function can clash with an existing alias or cmdlet name. As an example consider what happens if you have written a function called <b>rename-item</b>.  If you&#39;ve been reading recent posts on this blog you will know that PowerShell has a <b>rename-item</b> cmdlet.</p>
<p>Assume that you have opened a fresh PowerShell console window.</p>
<p>If you type <b>rename-item</b> at the command line then you see a prompt</p>
<p><b>PS C:\&gt; rename-item</b></p>
<p><b>cmdlet rename-item at command pipeline position 1<br />
Supply values for the following parameters:<br />
Path: </b></p>
<p>PowerShell prompts you to supply a value for the <b>Path</b> parameter.</p>
<p>Press Ctrl+C to stop this.</p>
<p>At the command line type the following to create the <b>rename-item</b> function:</p>
<p><b>function rename-item{</b></p>
<p><b>write-host &quot;This output is from the rename-item function&quot;</b></p>
<p><b>} </b></p>
<p>Then type at the command line:</p>
<p><b>rename-item</b></p>
<p>You will see an appearance like this:</p>
<p><b>PS C:\&gt; rename-item<br />
This output is from the rename-item function<br />
PS C:\&gt; </b></p>
<p>By creating a function called <b>rename-item</b> you have, effectively, blocked execution of the <b>rename-item</b> cmdlet at the command line.</p>
<p>Why does this happen? PowerShell attempts to find an executable to match a command in the following order:</p>
<ol>
<li>Aliases</li>
<li>Functions</li>
<li>Cmdlets</li>
<li>Executables</li>
<li>Scripts</li>
<li>Normal files</li>
</ol>
<p>So when you created the <b>rename-item</b> function it takes precedence over the <b>rename-item</b> cmdlet.</p>
<p>If you want to be sure to have access to the <b>rename-item</b> cmdlet avoid creating a global function with that name since the function will always have higher priority than the cmdlet.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=8&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/13/coping-with-a-powershell-naming-clash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>Limitations of the rename-item cmdlet</title>
		<link>http://andrwwatt.wordpress.com/2006/05/13/limitations-of-the-rename-item-cmdlet/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/13/limitations-of-the-rename-item-cmdlet/#comments</comments>
		<pubDate>Sat, 13 May 2006 12:47:12 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[Powershell - Cmdlets]]></category>
		<category><![CDATA[PowerShell - Scripts]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/13/limitations-of-the-rename-item-cmdlet/</guid>
		<description><![CDATA[If you&#39;ve been using Monad betas before the release of PowerShell RC1 you quite possibly have a significant number of scripts that you wrote using the Monad betas. Those files will have a .msh file extension. When you upgrade to PowerShell, apart from any changes you need to make to the content, you need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=7&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you&#39;ve been using Monad betas before the release of PowerShell RC1 you quite possibly have a significant number of scripts that you wrote using the Monad betas. Those files will have a <b>.msh</b> file extension. When you upgrade to PowerShell, apart from any changes you need to make to the content, you need to change the file extension to <b>.ps1</b>.</p>
<p>In the good old Windows command shell, doing that is straightforward. Simply navigate to the folder holding the scripts. Then use the following command:</p>
<p><b>ren *.msh *.ps1</b></p>
<p>If you try that with Monad you receive the following error:</p>
<p><b>PS C:\PowerShellScripts&gt; ren *.msh *.ps1<br />
Rename-Item : Cannot process argument because the value of argument &quot;path&quot; is invalid. At line:1 char:4<br />
+ ren  &lt;&lt;&lt;&lt; *.msh *.ps1</b></p>
<p>So, what&#39;s wrong with the path? To figure that out I will show the command in a full form:</p>
<p><b>ren -Path *.msh -NewName *.ps1</b></p>
<p>The error relates to the value of the <b>Path</b> parameter. It accepts wildcards in the path but it must resolve to a single file.</p>
<p>So how do you use PowerShell to rename multiple files?</p>
<p>PowerShell is designed to use pipelines. And you need a two step pipeline to get the job done. Assuming you are in the directory that contains the files that you want to rename, use the following command:</p>
<p><b>get-childitem -Path *.msh | </b></p>
<p><b>rename-item -NewName {$_.name -replace &quot;.msh&quot;,&quot;.ps1&quot;} -whatif</b></p>
<p>As you can see it&#39;s a pipeline with two steps. The first step uses the <b>get-childitem</b> cmdlet to retrieve information about all files in the current folder with a <b>.msh</b> file extension. The second step uses the <b>rename-item</b> cmdlet to process each object passed on from the first step. Each object is a <b>FileInfo</b> object. The value of the Extension property of each <b>FileInfo</b> object is <b>.msh</b>, as you can see by using the following command:</p>
<p><b>get-childitem *.msh |</b></p>
<p><b>format-table Name, Extension</b></p>
<p>The value of the <b>NewName</b> parameter is <b>{$_.name -replace &quot;.msh&quot;,&quot;.ps1&quot;}</b>. Any occurrence of <b>.msh</b> in the value of the <b>Name</b> property of the current object is replaced by <b>.ps1</b>.</p>
<p>To put it more succinctly, all files with a file extension of <b>.msh</b> are renamed to have a file extension of <b>.ps1</b>.</p>
<p>In Windows Explorer you can rename the current folder. The <b>rename-item</b> cmdlet doesn&#39;t allow you to rename any folder.</p>
<p>The example I showed used the <b>FileSystem</b> provider. You can use the <b>rename-item</b> cmdlet to rename items in other providers, for example the <b>alias</b> and <b>variable</b> providers. To display available providers use this command:</p>
<p><b>get-PSDrive</b></p>
<p>The <b>get-PSDrive</b> cmdlet has replaced the <b>get-drive</b> cmdlet which was found in public builds before RC1.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=7&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/13/limitations-of-the-rename-item-cmdlet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell in Exchange 2007 &#8211; Webcasts</title>
		<link>http://andrwwatt.wordpress.com/2006/05/12/powershell-in-exchange-2007-webcasts/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/12/powershell-in-exchange-2007-webcasts/#comments</comments>
		<pubDate>Fri, 12 May 2006 19:39:25 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - Exchange 2007]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/12/powershell-in-exchange-2007-webcasts/</guid>
		<description><![CDATA[The core release of Windows PowerShell, currently available as Release Candidate 1, has 129 cmdlets. Exchange Server 2007 due for release in the fourth quarter of 2006 has about 350 cmdlets specific to its needs. The Exchange team has given lots of useful introductory information about PowerShell in Exchange 2007 in two webcasts. In the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=6&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The core release of Windows PowerShell, currently available as Release Candidate 1, has 129 cmdlets.</p>
<p>Exchange Server 2007 due for release in the fourth quarter of 2006 has about 350 cmdlets specific to its needs.</p>
<p>The Exchange team has given lots of useful introductory information about PowerShell in Exchange 2007 in two webcasts.</p>
<p>In the first webcast Brad Clark covered <a href="http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;Params=%7eCMTYDataSvcParams%5e%7earg+Name%3d%22ID%22+Value%3d%221032293399%22%2f%5e%7earg+Name%3d%22ProviderID%22+Value%3d%22A6B43178-497C-4225-BA42-DF595171F04C%22%2f%5e%7earg+Name%3d%22lang%22+Value%3d%22en%22%2f%5e%7earg+Name%3d%22cr%22+Value%3d%22US%22%2f%5e%7esParams%5e%7e%2fsParams%5e%7e%2fCMTYDataSvcParams%5e" target="_blank" title="The Improved Exchange System Manager for Exchange &ldquo;12&rdquo;">The Improved Exchange System Manager for Exchange &ldquo;12&rdquo;</a>.</p>
<p>In the second Vivek Sharma described <a href="http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;Params=%7eCMTYDataSvcParams%5e%7earg+Name%3d%22ID%22+Value%3d%221032293397%22%2f%5e%7earg+Name%3d%22ProviderID%22+Value%3d%22A6B43178-497C-4225-BA42-DF595171F04C%22%2f%5e%7earg+Name%3d%22lang%22+Value%3d%22en%22%2f%5e%7earg+Name%3d%22cr%22+Value%3d%22US%22%2f%5e%7esParams%5e%7e%2fsParams%5e%7e%2fCMTYDataSvcParams%5e" title="Exchange Server 2007 Management Shell and Scripting" target="_blank">Exchange Server 2007 Management Shell and Scripting.</a></p>
<p>You will need a Microsoft Passport account or Live ID to register to view or download the recorded webcasts.</p>
<p>Note: The webcasts refer to PowerShell by its old code name &quot;Monad&quot;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=6&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/12/powershell-in-exchange-2007-webcasts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>Filtering WMI Object Properties using PowerShell</title>
		<link>http://andrwwatt.wordpress.com/2006/05/12/filtering-wmi-object-properties-using-powershell/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/12/filtering-wmi-object-properties-using-powershell/#comments</comments>
		<pubDate>Fri, 12 May 2006 12:31:05 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - Scripts]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/12/filtering-wmi-object-properties-using-powershell/</guid>
		<description><![CDATA[When you use the get-wmiobject cmdlet to retrieve properties of a Windows Management Instrumentation, WMI, class you can be overwhelmed by the number of properties displayed. Among the properties displayed when you use an asterisk wildcard with the format-list cmdlet, get-wmiobject -Class Win32_BIOS &#124; format-list * are the WMI system properties which you probably don&#39;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=5&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When you use the get-wmiobject cmdlet to retrieve properties of a Windows Management Instrumentation, WMI, class you can be overwhelmed by the number of properties displayed. Among the properties displayed when you use an asterisk wildcard with the <b>format-list</b> cmdlet,</p>
<p><b>get-wmiobject -Class Win32_BIOS |</b></p>
<p><b>format-list *</b></p>
<p>are the WMI system properties which you probably don&#39;t want to see. You can use a more specific wildcard with the <b>format-list </b>cmdlet to filter the properties displayed.</p>
<p>If you want to display properties about the BIOS of your machine you might use the command but exclude the WMI system properties use this command:</p>
<p><b> get-wmiobject -Class Win32_BIOS |</b></p>
<p><b>format-list [a-z]*</b></p>
<p>How does this work? The first step of the pipeline uses the <b>Win32_BIOS</b> WMI class to pass its properties to the second step of the pipeline. The <b>format-list</b> cmdlet formats the output as a list, but which properties are to be displayed?</p>
<p>The <b>[a-z]*</b> is an extended wildcard. It&#39;s partly a traditional wildcard and partly like a regular expression. The <b>[a-z]</b> is a character class. It matches any lower case alphabetic character between a and z. The <b>*</b> matches zero or more characters. Taken together the wildcard means &quot;Match any sequence of characters that begins with an alphabetic character&quot;.</p>
<p>You can use more focussed wilcards. To retrieve the properties beginning with s use this command:</p>
<p><b> get-wmiobject -Class Win32_BIOS |</b></p>
<p><b>format-list s*</b></p>
<p>The pattern <b>s*</b> matches any sequence of characters where the first character is s.<br />
<a href="http://technorati.com/claim/tat7fcstm5" rel="me" target="_blank">Technorati Profile</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=5&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/12/filtering-wmi-object-properties-using-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>The Windows PowerShell Newsgroup</title>
		<link>http://andrwwatt.wordpress.com/2006/05/12/the-windows-powershell-newsgroup/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/12/the-windows-powershell-newsgroup/#comments</comments>
		<pubDate>Fri, 12 May 2006 10:12:21 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - newsgroups]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/12/the-windows-powershell-newsgroup/</guid>
		<description><![CDATA[Newsgroups are a great way of staying up to date about many Microsoft topics. There are about 2,000 public newsgroups on the microsoft.com servers. At the moment, discussion of Windows PowerShell takes place on the microsoft.public.windows.server.scripting newsgroup. The news server is news.microsoft.com. If you haven&#39;t used newsgroups before you can use Outlook Express which is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=4&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Newsgroups are a great way of staying up to date about many Microsoft topics. There are about 2,000 public newsgroups on the microsoft.com servers.<br />
At the moment, discussion of Windows PowerShell takes place on the microsoft.public.windows.server.scripting newsgroup.</p>
<p>The news server is news.microsoft.com.</p>
<p>If you haven&#39;t used newsgroups before you can use Outlook Express which is installed with many flavours of Windows. There are many other newsreaders, such as Thunderbird and Agent.</p>
<p>A new newsgroup, specific for Windows PowerShell, is likely to be available later this month or next month. Once the new newsgroup is up and running I will post a pointer to its location.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=4&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/12/the-windows-powershell-newsgroup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting your hands on Windows PowerShell RC1</title>
		<link>http://andrwwatt.wordpress.com/2006/05/12/getting-your-hands-on-windows-powershell-rc1/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/12/getting-your-hands-on-windows-powershell-rc1/#comments</comments>
		<pubDate>Fri, 12 May 2006 09:53:18 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - Downloads]]></category>

		<guid isPermaLink="false">https://andrwwatt.wordpress.com/2006/05/12/getting-your-hands-on-windows-powershell-rc1/</guid>
		<description><![CDATA[The current Windows PowerShell build is Release Candidate 1 Refresh. It&#39;s available for download at the time of writing from here. To download you need to register. To register you need a Microsoft Passport or Microsoft Live ID. In my experience it&#39;s useless attempting to login to Passport using any browser other than Internet Explorer. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=3&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The current Windows PowerShell build is Release Candidate 1 Refresh.</p>
<p>It&#39;s available for download at the time of writing from <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=2B0BBFCD-0797-4083-A817-5E6A054A85C9&amp;displaylang=en" target="_blank" title="here">here</a>.</p>
<p>To download you need to register. To register you need a Microsoft Passport or Microsoft Live ID. In my experience it&#39;s useless attempting to login to Passport using any browser other than Internet Explorer.</p>
<p>I&#39;m not quite sure why Microsoft has insisted on a need for registration for this download, but they have. Since you are getting your hands on a great admin tool free, it&#39;s not too big an inconvenience.</p>
<p>You also need the .NET Framework 2.0 installed because PowerShell uses .NET Framework 2.0 classes behind the scenes.</p>
<p>Windows PowerShell runs on Windows Server 2003 (RTM, SP1), Windows Server 2003 R2 and Windows XP (RTM, SP1 and SP2) and Windows Vista.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=3&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/12/getting-your-hands-on-windows-powershell-rc1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello PowerShell world!</title>
		<link>http://andrwwatt.wordpress.com/2006/05/12/hello-world/</link>
		<comments>http://andrwwatt.wordpress.com/2006/05/12/hello-world/#comments</comments>
		<pubDate>Fri, 12 May 2006 09:23:15 +0000</pubDate>
		<dc:creator>andrwwatt</dc:creator>
				<category><![CDATA[PowerShell - misc]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Why yet another blog? I&#39;m excited by the potential of Windows PowerShell for professional administrators and power users to get a handle on their Windows computers and plan to use this blog to describe, explore, comment and pontificate about any issue relating to Windows PowerShell that interests or puzzles me. And, of course, I plan [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=1&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Why yet another blog?</p>
<p>I&#39;m excited by the potential of Windows PowerShell for professional administrators and power users to get a handle on their Windows computers and plan to use this blog to describe, explore, comment and pontificate about any issue relating to Windows PowerShell that interests or puzzles me.</p>
<p>And, of course, I plan to post and discuss some PowerShell scripts that hopefully will be useful to people who are learning about Windows PowerShell and learning how to use it.</p>
<p>PowerShell is different in many significant ways from other command line shells and scripting languages. So I ought to have plenty to write about over the coming months.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andrwwatt.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andrwwatt.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andrwwatt.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andrwwatt.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andrwwatt.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andrwwatt.wordpress.com&amp;blog=221566&amp;post=1&amp;subd=andrwwatt&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andrwwatt.wordpress.com/2006/05/12/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/bbd01d97e4b6b8a5c05a55b10c599ce2?s=96&#38;d=identicon" medium="image">
			<media:title type="html">andrwwatt</media:title>
		</media:content>
	</item>
	</channel>
</rss>
