<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx</link><description>Ben Pearce was gracious enough to put together a good looking PowerShell Cheat Sheet which I've included as an attachment to this blog post. By definition, a cheat sheet is incomplete so this contains the things that Ben has found to be the most import.</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1521653</link><pubDate>Wed, 24 Jan 2007 16:39:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1521653</guid><dc:creator>Kathy Nelson</dc:creator><description>&lt;p&gt;For those of use running Office 2003 (not 2007), could you post it under a more usable format?&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1521686</link><pubDate>Wed, 24 Jan 2007 16:51:25 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1521686</guid><dc:creator>Ben Pearce</dc:creator><description>&lt;p&gt;I hope you find this useful! &amp;nbsp;I found printing this out and leaving it on my desk really useful. &amp;nbsp;There's nothing more annoying than forgetting simple things and having to search for them every time.&lt;/p&gt;
&lt;p&gt;Enjoy.&lt;/p&gt;
&lt;p&gt;Ben&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1521713</link><pubDate>Wed, 24 Jan 2007 16:57:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1521713</guid><dc:creator>Ron McMahon</dc:creator><description>&lt;p&gt;You know, I realize that 2007 is now a whole 3 weeks old, but not everyone has jumped to adopt Word 2007. &amp;nbsp;Publishing this document in the .docx format really runs counter to sharing. &amp;nbsp;Why not just encrypt the dumb thing and dangle it in front of me too?&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1521825</link><pubDate>Wed, 24 Jan 2007 17:33:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1521825</guid><dc:creator>Ian Pender</dc:creator><description>&lt;p&gt;Any formats &amp;lt; Office2007 at all ??? &lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1521988</link><pubDate>Wed, 24 Jan 2007 18:22:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1521988</guid><dc:creator>vermorel</dc:creator><description>&lt;p&gt;Some of us do not have MS Word 2007 :-(&lt;/p&gt;
&lt;p&gt;Could you attach a small HTML/PS/PDF of this file?&lt;/p&gt;
&lt;p&gt;Anyway, a PSH Cheat Sheet is nice idea.&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1522012</link><pubDate>Wed, 24 Jan 2007 18:27:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1522012</guid><dc:creator>/\/\o\/\/</dc:creator><description>&lt;p&gt;Do you also have this in a pre-&amp;quot;Open XML Format Document &amp;quot; format ?&lt;/p&gt;
&lt;p&gt;would be nice for the users of &amp;quot;older&amp;quot; Office versions&lt;/p&gt;
&lt;p&gt;Greetings /\/\o\/\/&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1522057</link><pubDate>Wed, 24 Jan 2007 18:33:01 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1522057</guid><dc:creator>Adrian Milliner</dc:creator><description>&lt;p&gt;Good idea, but a few points:&lt;/p&gt;
&lt;p&gt;1. Why a docx file? When I downloaded it, Word 2003 crashed, taking XP with it. When I rebooted, Office needed to be reactivated by phone, then it forced me to download a 27mb converter utility, all so I could read some styled text.&lt;/p&gt;
&lt;p&gt;2. The &amp;quot;Writing to Console&amp;quot; options are not synonymous. &amp;quot;$a&amp;quot; by itself writes the value of $a to the output pipeline, &amp;quot;write-host&amp;quot; draws it into the console's buffer. &lt;/p&gt;
&lt;p&gt;A subtle difference but can be quite important when writing a function. Consider this:&lt;/p&gt;
&lt;p&gt;function twice ($a) {&lt;/p&gt;
&lt;p&gt;$b=$a*2&lt;/p&gt;
&lt;p&gt;&amp;quot;twice $a is $b&amp;quot; # write to console like in the cheatsheet&lt;/p&gt;
&lt;p&gt;return $b&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;$c = twice 4&lt;/p&gt;
&lt;p&gt;$c&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1522462</link><pubDate>Wed, 24 Jan 2007 19:54:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1522462</guid><dc:creator>Sri</dc:creator><description>&lt;p&gt;How do I open the document?&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1522511</link><pubDate>Wed, 24 Jan 2007 20:08:42 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1522511</guid><dc:creator>Luke</dc:creator><description>&lt;p&gt;For those that want to open this file you will need either Office 2007 or the Compatibility Pack&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;amp;displaylang=en&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1523115</link><pubDate>Wed, 24 Jan 2007 21:31:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1523115</guid><dc:creator>MP</dc:creator><description>&lt;p&gt;Sorry but I think it is pretty crazy to post a document in a format used by hardly anyone. &lt;/p&gt;
&lt;p&gt;Here is a Word 97-2003 compatible version of the document&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://homepage.ntlworld.com/deadmonkey/ps/CheatSheetV1.00.doc"&gt;http://homepage.ntlworld.com/deadmonkey/ps/CheatSheetV1.00.doc&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1523208</link><pubDate>Wed, 24 Jan 2007 22:14:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1523208</guid><dc:creator>SA</dc:creator><description>&lt;p&gt;Can someone throw up a PDF format of the cheat sheet. &amp;nbsp;I tried running it in my Word 2003 after installing the compatibility pack, it was all gibberish.&lt;/p&gt;
&lt;p&gt;Thanks:)&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1523477</link><pubDate>Wed, 24 Jan 2007 23:46:15 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1523477</guid><dc:creator>Kirk Jackson</dc:creator><description>&lt;p&gt;Thanks Ben, good cheat sheet. Kirk&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1523809</link><pubDate>Thu, 25 Jan 2007 01:03:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1523809</guid><dc:creator>Karl Prosser</dc:creator><description>&lt;p&gt;Here i have converted it to PDF for those interested.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://karlprosser.edify.us/publicdownloads/benspowershellcheatsheet.pdf"&gt;http://karlprosser.edify.us/publicdownloads/benspowershellcheatsheet.pdf&lt;/a&gt;&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1524154</link><pubDate>Thu, 25 Jan 2007 02:34:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1524154</guid><dc:creator>MP</dc:creator><description>&lt;p&gt;PDF version as requested -&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://homepage.ntlworld.com/deadmonkey/ps/CheatSheetV1.00.pdf"&gt;http://homepage.ntlworld.com/deadmonkey/ps/CheatSheetV1.00.pdf&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Courtesy of PDFCreator (&lt;a rel="nofollow" target="_new" href="http://sourceforge.net/projects/pdfcreator/"&gt;http://sourceforge.net/projects/pdfcreator/&lt;/a&gt;)&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1524157</link><pubDate>Thu, 25 Jan 2007 02:34:50 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1524157</guid><dc:creator>Glenn</dc:creator><description>&lt;p&gt;I've got a PDF version if anyone wants it: &lt;a rel="nofollow" target="_new" href="http://blog.slaven.net.au/archives/2007/01/25/powershell-cheat-sheet/"&gt;http://blog.slaven.net.au/archives/2007/01/25/powershell-cheat-sheet/&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Powershell cheat sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1524355</link><pubDate>Thu, 25 Jan 2007 03:12:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1524355</guid><dc:creator>Development on a Shoestring</dc:creator><description>&lt;p&gt;The Windows Powershell Blog has posted a two page cheat sheet for Powershell that was put together by Ben Pearce. It&amp;amp;#8217;s very handy, I&amp;amp;#8217;ve already printed this out &amp;amp;amp; sent it to the rest of the development team at work....&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1524774</link><pubDate>Thu, 25 Jan 2007 04:38:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1524774</guid><dc:creator>techstarts.spaces.live.com</dc:creator><description>&lt;p&gt;For some reason I think Jeffery didn't meant to trouble us, it was as simple as save doc file and upload it.With so many salty comments I'm sure it won't repeat&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1525246</link><pubDate>Thu, 25 Jan 2007 06:14:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1525246</guid><dc:creator>SJB</dc:creator><description>&lt;p&gt;yeah the docx format was poor form, and just created needless negativity&lt;/p&gt;
&lt;p&gt;apart from that, nice cheat sheet and thanks to those who converted it to more common formats&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1527145</link><pubDate>Thu, 25 Jan 2007 11:45:51 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1527145</guid><dc:creator>Cronan</dc:creator><description>&lt;p&gt;Nice cheat sheet. Just try to avoid using a bleeding-edge data format next time.&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1527355</link><pubDate>Thu, 25 Jan 2007 12:15:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1527355</guid><dc:creator>benp</dc:creator><description>&lt;p&gt;Hey Guys&lt;/p&gt;
&lt;p&gt;Apologies for the confusion in providing a docx file. &amp;nbsp;Completeley thoughtless on my part, and thanks to Jeff for rectifying this. &amp;nbsp;A lesson now learnt :)&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;Ben&lt;/p&gt;</description></item><item><title>PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1531688</link><pubDate>Fri, 26 Jan 2007 00:52:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1531688</guid><dc:creator>Scott Forsyth's WebLog</dc:creator><description>&lt;p&gt;Here&amp;amp;#39;s a must-have cheat sheet for PowerShell. Jeffrey Snover has put together an excellent doc that&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1533211</link><pubDate>Fri, 26 Jan 2007 04:32:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1533211</guid><dc:creator>Jeremy</dc:creator><description>&lt;p&gt;I was able to open the .docx file just fine in Word 2003 SP2.&lt;/p&gt;
&lt;p&gt;Thanks, this is great!&lt;/p&gt;</description></item><item><title>PowerShell Cheat Sheet – Now in XPS</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1561582</link><pubDate>Wed, 31 Jan 2007 08:01:59 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1561582</guid><dc:creator>Windows PowerShell</dc:creator><description>&lt;p&gt;I originally published Ben Pearce's PowerShell Cheat sheet in Word 2007 format . Given that I posted&lt;/p&gt;
</description></item><item><title>Cosas Interesantes 31/01/2007</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1562384</link><pubDate>Wed, 31 Jan 2007 10:02:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1562384</guid><dc:creator>Be Geek My Friend</dc:creator><description>&lt;p&gt;Hoy en cosas interesantes: Expression Blend Beta2 y Design Beta 1, Referencia rapida de powershell, Entrevista&lt;/p&gt;
</description></item><item><title>PowerShell for Vista has shipped!</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1565007</link><pubDate>Wed, 31 Jan 2007 15:51:09 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1565007</guid><dc:creator>.NET (Never Explain Twice...or something like that)</dc:creator><description>&lt;p&gt;PowerShell for Vista has shipped. &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/powershell/archive/2007/01/29/windows-powershell-1-0-for-windows-vista.aspx"&gt;http://blogs.msdn.com/powershell/archive/2007/01/29/windows-powershell-1-0-for-windows-vista.aspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1565016</link><pubDate>Wed, 31 Jan 2007 15:53:56 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1565016</guid><dc:creator>Steve Tibbett</dc:creator><description>&lt;p&gt;I posted another PowerShell cheat sheet a while ago as well, that has a lot of commands listed with equivalents in the old shell and the new shell.. I find it useful.&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://blog.stevex.net/index.php/powershell-cheatsheet/"&gt;http://blog.stevex.net/index.php/powershell-cheatsheet/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;No XPS available, sorry. &amp;nbsp;:)&lt;/p&gt;</description></item><item><title>Developers Cheat Sheets</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1635448</link><pubDate>Fri, 09 Feb 2007 18:29:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1635448</guid><dc:creator>Bite my bytes</dc:creator><description>&lt;p&gt;Developers Cheat Sheets&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1685975</link><pubDate>Fri, 16 Feb 2007 01:29:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1685975</guid><dc:creator>Zamo</dc:creator><description>&lt;p&gt;I have stumbled across an apparent bug in powershell (or shoddy documentation).&lt;/p&gt;
&lt;p&gt;I am working on some scripts to copy and append/rename files based on the current date-time after moving to a backup location however when working with the get-date command I was confused over the output.&lt;/p&gt;
&lt;p&gt;The help file for get-date, 'get-help get-date -full', indicates that I should be able to display the month in two digit numerical format (06) using 'get-date -uformat %M' I get the minutes and when using the lower case 'm' which should be minutes I get the two-digit month.&lt;/p&gt;
&lt;p&gt;I have confirmed this behavior running powershell on Windows XP SP2 x86 and Windows 2003 SP1 x64.&lt;/p&gt;</description></item><item><title>A Cheat sheet of Cheat sheets</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1763444</link><pubDate>Mon, 26 Feb 2007 17:33:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1763444</guid><dc:creator>Wictor Wilen</dc:creator><description>&lt;p&gt;Here is a list of cheat sheets for the Windows and .NET platform that I frequently use and I think are of great interest. Visual Studio 2005 Keyboard Shortcut References Visual C# 2005 - PDF grayscal...&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#1895502</link><pubDate>Fri, 16 Mar 2007 20:49:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1895502</guid><dc:creator>Mehfuz Hossain</dc:creator><description>&lt;p&gt;I guess , we should have this in the doc too.&lt;/p&gt;
&lt;p&gt;Lets say, we want to access property of object or do assing &amp;nbsp;some value to it.&lt;/p&gt;
&lt;p&gt;it is possible to do&lt;/p&gt;
&lt;p&gt;someObject | %{ $_.someProperty = someValue}&lt;/p&gt;
&lt;p&gt;Just an idea :-)&lt;/p&gt;</description></item><item><title>NetCmdlets Cheat Sheet (PowerShell)</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#4677121</link><pubDate>Sat, 01 Sep 2007 01:09:28 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4677121</guid><dc:creator>textBox1</dc:creator><description>&lt;p&gt;NetCmdlets Cheat Sheet (PowerShell)&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#7044389</link><pubDate>Wed, 09 Jan 2008 22:06:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7044389</guid><dc:creator>Yeorwned</dc:creator><description>&lt;p&gt;Microsoft guys trying to force their formats upon the world as usual. =[&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#7898080</link><pubDate>Tue, 26 Feb 2008 05:46:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7898080</guid><dc:creator>remi</dc:creator><description>&lt;p&gt;What the hell !?!?!?!?!?!?!?!?!?&lt;/p&gt;
&lt;p&gt;Um ... hello? &amp;nbsp;How am I supposed to view this doc(x)?&lt;/p&gt;
&lt;p&gt;Could you, maybe, post in a format that businesses actually use? &amp;nbsp;Why don't you just post a Stuff-It compressed archive.&lt;/p&gt;
&lt;p&gt;Seriously.&lt;/p&gt;
&lt;p&gt;Jerk.&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#7898134</link><pubDate>Tue, 26 Feb 2008 06:07:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7898134</guid><dc:creator>PowerShellTeam</dc:creator><description>&lt;p&gt;&amp;gt; Jerk.&lt;/p&gt;
&lt;p&gt;Are you calling me a name or is that your signature?&lt;/p&gt;
&lt;p&gt;Jeffrey Snover [MSFT]&lt;/p&gt;
&lt;p&gt;Windows Management Partner Architect&lt;/p&gt;
&lt;p&gt;Visit the Windows PowerShell Team blog at: &amp;nbsp; &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/PowerShell"&gt;http://blogs.msdn.com/PowerShell&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Visit the Windows PowerShell ScriptCenter at: &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx"&gt;http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#8334739</link><pubDate>Tue, 25 Mar 2008 04:57:05 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8334739</guid><dc:creator>Sorcha</dc:creator><description>&lt;p&gt;I've never heard such wingeing&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#9478643</link><pubDate>Sun, 15 Mar 2009 14:37:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9478643</guid><dc:creator>Wayne Hoggett</dc:creator><description>&lt;p&gt;Wow. You'd think people wanting to download a Powershell cheat sheet would be early adopters or at least open to the possibility of early adoption or compatibility with new formats. Geez...&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#9776842</link><pubDate>Thu, 18 Jun 2009 20:41:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9776842</guid><dc:creator>Randy Baxter</dc:creator><description>&lt;p&gt;I want to thank you for posting at all, you think someone would think of that. &lt;/p&gt;
&lt;p&gt;Thank you, &lt;/p&gt;
&lt;p&gt;from some of us that enjoy the bleeding edge.&lt;/p&gt;</description></item><item><title>re: PowerShell Cheat Sheet</title><link>http://blogs.msdn.com/powershell/archive/2007/01/24/powershell-cheat-sheet.aspx#9802229</link><pubDate>Thu, 25 Jun 2009 00:44:14 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9802229</guid><dc:creator>Dave</dc:creator><description>&lt;p&gt;I would like to download but at best I get a 0 byte file on WIn7 or Vista.Is this supposed to still work? Thanks, Dave&lt;/p&gt;</description></item></channel></rss>