<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Dmitry's PowerBlog: PowerShell and beyond</title>
	<atom:link href="http://dmitrysotnikov.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dmitrysotnikov.wordpress.com</link>
	<description>Dmitry Sotnikov's view on PowerShell, PowerGUI and everything he sees around</description>
	<lastBuildDate>Fri, 10 Jul 2009 10:00:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/930c8793b5aed06d07140b3be0db9d23?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Dmitry's PowerBlog: PowerShell and beyond</title>
		<link>http://dmitrysotnikov.wordpress.com</link>
	</image>
			<item>
		<title>Restore Exchange data from PowerShell</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/10/restore-exchange-backup-data-from-powershell/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/10/restore-exchange-backup-data-from-powershell/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 10:00:24 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[cmdlets]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1377</guid>
		<description><![CDATA[Working with mail backups can be a pain. Especially when you need to do some kind of bulk operations like scan backups for particular mailboxes and find all emails with certain keywords and then export then to a PST or add them to a public folder.
Quest has recently PowerShell-enabled its Exchange/Notes/PST backup/recovery product &#8211; and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1377&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Working with mail backups can be a pain. Especially when you need to do some kind of bulk operations like scan backups for particular mailboxes and find all emails with certain keywords and then export then to a PST or add them to a public folder.</p>
<p>Quest has recently <a href="http://wiki.powergui.org/index.php/Quest_Recovery_Manager_for_Exchange_cmdlets_reference">PowerShell-enabled</a> its <a href="http://www.quest.com/recovery-manager-for-exchange/">Exchange/Notes/PST backup/recovery product</a> &#8211; and we got a lot of great functionality available for your scripts/command line.</p>
<p>Here are a few examples:</p>
<ul>
<li>Here&#8217;s how you can attach a standard Exchange backup and retrieve its messages as .msg files:</li>
</ul>
<p><code>Attach-RMEExchangeDB -EdbPath "C:\Data\Edb\EdbSearchTest\EdbSearchTest.edb" | Get-RMEMessage | Export-RMEMessage -ExportPath "C:\Data\Exported\Msg" -Type Msg</code></p>
<ul>
<li> Or look for particular keywords in Lotus Notes data:</li>
</ul>
<p><code>Attach-RMELotusDB "C:\Data\Nsf" | Get-RMEMessage -SearchIn Subject, Body -Text "test" | Export-RMEMessage -ExportPath "C:\Data\Exported\Eml" -Type Eml</code></p>
<ul>
<li> Or restore a folder to PST:</li>
</ul>
<p><code>Attach-RMEExchangeDB "C:\Data\Edb\EdbSearchTest\EdbSearchTest.edb" | Get-RMEFolder "John Doe\Inbox" | Restore-RMEFolder -TargetPath "C:\Data\Restored\Pst"</code><br />
Obviously you can restore to live mailboxes and public folders, work with attachments, and so on, and so forth.</p>
<p>Here&#8217;s full list of the cmdlets &#8211; each of the pages has examples and details on parameters, etc.:</p>
<ul>
<li> <a title="Get-RMEMailbox" href="http://wiki.powergui.org/index.php/Get-RMEMailbox">Get-RMEMailbox</a></li>
<li> <a title="Restore-RMEMailbox" href="http://wiki.powergui.org/index.php/Restore-RMEMailbox">Restore-RMEMailbox</a></li>
</ul>
<ul>
<li> <a title="Get-RMEFolder" href="http://wiki.powergui.org/index.php/Get-RMEFolder">Get-RMEFolder</a></li>
<li> <a title="Restore-RMEFolder" href="http://wiki.powergui.org/index.php/Restore-RMEFolder">Restore-RMEFolder</a></li>
</ul>
<ul>
<li> <a title="Get-RMEMessage" href="http://wiki.powergui.org/index.php/Get-RMEMessage">Get-RMEMessage</a></li>
<li> <a title="Restore-RMEMessage" href="http://wiki.powergui.org/index.php/Restore-RMEMessage">Restore-RMEMessage</a></li>
<li> <a title="Export-RMEMessage" href="http://wiki.powergui.org/index.php/Export-RMEMessage">Export-RMEMessage</a></li>
</ul>
<ul>
<li> <a title="Export-RMEAttachment" href="http://wiki.powergui.org/index.php/Export-RMEAttachment">Export-RMEAttachment</a></li>
<li> <a title="Get-RMEAttachment" href="http://wiki.powergui.org/index.php/Get-RMEAttachment">Get-RMEAttachment</a></li>
</ul>
<ul>
<li> <a title="Attach-RMEExchangeDB" href="http://wiki.powergui.org/index.php/Attach-RMEExchangeDB">Attach-RMEExchangeDB</a></li>
<li> <a title="Extract-RMEExchangeDB" href="http://wiki.powergui.org/index.php/Extract-RMEExchangeDB">Extract-RMEExchangeDB</a></li>
</ul>
<ul>
<li> <a title="Attach-RMEExchangeMailbox" href="http://wiki.powergui.org/index.php/Attach-RMEExchangeMailbox">Attach-RMEExchangeMailbox</a></li>
<li> <a title="Attach-RMEExchangePublicFolders" href="http://wiki.powergui.org/index.php/Attach-RMEExchangePublicFolders">Attach-RMEExchangePublicFolders</a></li>
</ul>
<ul>
<li> <a title="Attach-RMEPersonalDB" href="http://wiki.powergui.org/index.php/Attach-RMEPersonalDB">Attach-RMEPersonalDB</a></li>
<li> <a title="Attach-RMELotusDB" href="http://wiki.powergui.org/index.php/Attach-RMELotusDB">Attach-RMELotusDB</a></li>
</ul>
<p>Note that unlike AD cmdlets these are actually a part of commercial product so there is cost involved. You can get a trial license <a href="http://www.quest.com/recovery-manager-for-exchange/">from the product page</a>. If you are a Microsoft MVP you can also get a free NFR license by applying <a href="http://www.quest.com/common/registration.aspx?requestdefid=12767">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1377/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1377/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1377/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1377&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/10/restore-exchange-backup-data-from-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>
	</item>
		<item>
		<title>Catch variable typos</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/08/catch-variable-typos/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/08/catch-variable-typos/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 10:00:17 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1373</guid>
		<description><![CDATA[Did you know that PowerShell has so called strict mode in which it can catch and report any use of uninitialized variables? I&#8217;ve started doing this while scripting and it made debugging scripts so much easier! Lot&#8217;s of typos and copy/paste issues simply get detected right away.
In PowerShell v1 you can turn this mode on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1373&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Did you know that PowerShell has so called strict mode in which it can catch and report any use of uninitialized variables? I&#8217;ve started doing this while scripting and it made debugging scripts so much easier! Lot&#8217;s of typos and copy/paste issues simply get detected right away.</p>
<p>In PowerShell v1 you can turn this mode on by executing: <code>Set-PSDebug –strict</code></p>
<p>In PowerShell v2 by doing: <code>Set-StrictMode –version 1</code> or <code>Set-StrictMode –version 2</code>.</p>
<p>(See <a href="http://www.microsoft.com/technet/scriptcenter/topics/winpsh/strictmode.mspx">this great article</a> explaining all the difference.)</p>
<p>To make this apply to all my debugging sessions, but not to command line and PowerGUI admin console, I did the following:</p>
<p>1. Opened my PowerShell profile:</p>
<p><img src="http://dmitrysotnikov.files.wordpress.com/2009/07/open-profile.png?w=252&#038;h=345" alt="Open-Profile" title="Open-Profile" width="252" height="345" class="aligncenter size-full wp-image-1374" /></p>
<p>2. Added this code in there:</p>
<pre><span style="color:#0000FF;">if</span><span style="color:#000000;"> (</span><span style="color:#800080;">$host</span><span style="color:#000000;">.</span><span style="color:#8B4513;">Name</span><span style="color:#000000;"> </span><span style="color:#FF0000;">-eq</span><span style="color:#000000;"> </span><span style="color:#800000;">'</span><span style="color:#800000;">PowerGUIScriptEditorHost</span><span style="color:#800000;">'</span><span style="color:#000000;">) {
    </span><span style="color:#5F9EA0;font-weight:bold;">Set-StrictMode</span><span style="color:#000000;"> </span><span style="color:#5F9EA0;font-style:italic;">-Version</span><span style="color:#000000;"> </span><span style="color:#800000;">2.0</span><span style="color:#000000;">
}</span></pre>
<p>That&#8217;s it. Close the profile and restart the PowerGUI Script Editor.</p>
<p>P.S. Please forgive me the &#8220;<code>if</code>&#8221; workaround in common profile. In the future we will at some point start supporting a separate profile specifically for the script editor. This is the best practice and we&#8217;ll get there. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1373/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1373/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1373/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1373&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/08/catch-variable-typos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/07/open-profile.png" medium="image">
			<media:title type="html">Open-Profile</media:title>
		</media:content>
	</item>
		<item>
		<title>Customize hotkeys in PowerGUI Script Editor</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/06/customize-hotkeys-in-powergui-script-editor/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/06/customize-hotkeys-in-powergui-script-editor/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 10:00:29 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[IDE]]></category>
		<category><![CDATA[Knowledge Base]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1370</guid>
		<description><![CDATA[One of the hidden gems in PowerGUI Script Editor is the ability to fully customize its toolbars and hotkeys.
Say, you want to have a hotkey to collapse all regions in a PowerShell script &#8211; this could not be easier, just:

On the Tools menu, click Customize.
In the Customize dialog box, click the Keyboard tab.
On the Keyboard [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1370&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the hidden gems in <a href="http://powergui.org">PowerGUI Script Editor</a> is the ability to fully customize its toolbars and hotkeys.</p>
<p>Say, you want to have a hotkey to collapse all regions in a PowerShell script &#8211; this could not be easier, just:</p>
<ol>
<li>On the <strong>Tools </strong>menu, click <strong>Customize</strong>.</li>
<li>In the <strong>Customize </strong>dialog box, click the <strong>Keyboard </strong>tab.</li>
<li>On the <strong>Keyboard </strong>tab, select the command you need.</li>
<li>In the <strong>Press shortcut key(s)</strong>, assign the hotkey you want.</li>
</ol>
<p><a href="http://dmitrysotnikov.files.wordpress.com/2009/07/customize-editor-hotkeys.png"><img class="aligncenter size-full wp-image-1371" title="Customize-Editor-Hotkeys" src="http://dmitrysotnikov.files.wordpress.com/2009/07/customize-editor-hotkeys.png?w=500&#038;h=393" alt="Customize-Editor-Hotkeys" width="500" height="393" /></a></p>
<p>Other tabs of this dialog box are also useful:</p>
<ul>
<li><strong>Toolbars </strong>- lets you create your own toolbars.</li>
<li><strong>Commands </strong>- lets you add buttons to existing toolbars by simply dragging them from the dialog box to the toolbar.</li>
</ul>
<p>Hope this makes your PowerShell scripting even more enjoyable!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1370/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1370/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1370/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1370&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/06/customize-hotkeys-in-powergui-script-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/07/customize-editor-hotkeys.png" medium="image">
			<media:title type="html">Customize-Editor-Hotkeys</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerShell Help Reader</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/03/powershell-help-reader/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/03/powershell-help-reader/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 10:00:25 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1368</guid>
		<description><![CDATA[Alexei Martseniuk (one of the developers on the original PowerGUI team) has developed a nice little PowerShell utility &#8211; WPF-based PowerShell Help Reader.
It makes searching and using the PowerShell help system easier and just a more pleasant experience. You can see a demo, download a 21-day trial version or buy full version here.
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1368&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Alexei Martseniuk (one of the developers on the original PowerGUI team) has developed a nice little PowerShell utility &#8211; WPF-based <a href="http://powershelltools.com/">PowerShell Help Reader</a>.</p>
<p>It makes searching and using the PowerShell help system easier and just a more pleasant experience. You can see a demo, download a 21-day trial version or buy full version <a href="http://powershelltools.com/">here</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1368&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/03/powershell-help-reader/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>
	</item>
		<item>
		<title>New PowerShell MVPs</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/02/new-powershell-mvps/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/02/new-powershell-mvps/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 10:00:54 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[MVP]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1360</guid>
		<description><![CDATA[Two prominent members of the PowerShell community got Microsoft&#8217;s Most Valuable Professional (MVP) award yesterday:






Joel &#8220;Jaykul&#8221; Bennett &#8211; the creator of the PowerBoots UI library for PowerShell and PoshCode.org &#8211; the online script repository behind PowerGUI&#8217;s Online Search.





Jonathan Noble &#8211; a very active member of UK PowerShell Usergroup and TechNet UK IT Professional Community Council, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1360&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Two prominent members of the PowerShell community got Microsoft&#8217;s Most Valuable Professional (MVP) award yesterday:</p>
<table border="0">
<tbody>
<tr>
<td width="150">
<p style="text-align:center;"><img class="alignnone size-full wp-image-1361" title="Jaykul" src="http://dmitrysotnikov.files.wordpress.com/2009/07/jaykul.png?w=96&#038;h=96" alt="Jaykul" width="96" height="96" /></p>
</td>
<td><a href="http://huddledmasses.org/">Joel &#8220;Jaykul&#8221; Bennett</a> &#8211; the creator of the <a href="http://www.codeplex.com/PowerBoots">PowerBoots</a> UI library for PowerShell and <a href="http://PoshCode.org">PoshCode.org</a> &#8211; the online script repository behind PowerGUI&#8217;s <a href="http://dmitrysotnikov.wordpress.com/2008/07/28/powershell-cpan/">Online Search</a>.</td>
</tr>
<tr>
<td width="150">
<p style="text-align:center;"><img class="alignnone size-full wp-image-1362" title="JonathanNoble" src="http://dmitrysotnikov.files.wordpress.com/2009/07/jonathannoble.jpg?w=75&#038;h=98" alt="JonathanNoble" width="75" height="98" /></p>
</td>
<td><a href="http://www.jonoble.com/">Jonathan Noble</a> &#8211; a very active member of UK PowerShell Usergroup and TechNet <a href="http://technet.microsoft.com/en-gb/community/bb380164.aspx">UK IT Professional Community Council</a>, and also one of the co-creators of <a href="http://www.tweetertags.com/">TweeterTags.com</a></td>
</tr>
</tbody>
</table>
<p>MVP award is extremely valuable in the Microsoft world. It is only granted to the individuals who are actively helping the community and are pushing the boundaries of the technology.</p>
<p>And the award is granted for just one year &#8211; to keep you motivated if you want to be re-awarded. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' />  Speaking of which quite a few PowerShell folks got re-awarded yesterday as well (naming just those who I know got the award &#8211; there are a lot more):</p>
<ul>
<li><a href="http://jdhitsolutions.blogspot.com/">Jeff Hicks</a></li>
<li><a href="http://karlprosser.com/coder/">Karl Prosser</a></li>
<li><a href="http://TheEssentialExchange.com/blogs/michael">Michael B. Smith</a></li>
<li><a href="http://smtp25.blogspot.com">Oz Casey Dedeal</a></li>
<li><a href="http://blogs.microsoft.co.il/blogs/ScriptFanatic">Shay Levy</a></li>
<li><a href="http://powershell.com/cs/blogs/tobias/default.aspx">Tobias Weltner</a></li>
<li><a href="http://myitforum.com/cs2/blogs/yli628/">Ying Li</a></li>
</ul>
<p>You can find full list of PowerShell MVPs and more information on each of them (luckily I can say &#8220;us&#8221; <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> ) <a href="https://mvp.support.microsoft.com/communities/mvp.aspx?product=1&amp;competency=PowerShell">here</a>.</p>
<p>Congratulations to Joel and Jonathan, and everyone who got re-awarded!</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/MVP" target="_blank" rel="tag" title="Link to Technorati Tag category for MVP">MVP</a>, <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F;title=New%20PowerShell%20MVPs" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=New%20PowerShell%20MVPs&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F&amp;Title=New%20PowerShell%20MVPs" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F&amp;title=New%20PowerShell%20MVPs" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F&amp;title=New%20PowerShell%20MVPs" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=New%20PowerShell%20MVPs&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F02%2Fnew%2Dpowershell%2Dmvps%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1360/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1360/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1360/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1360&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/02/new-powershell-mvps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/07/jaykul.png" medium="image">
			<media:title type="html">Jaykul</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/07/jonathannoble.jpg" medium="image">
			<media:title type="html">JonathanNoble</media:title>
		</media:content>
	</item>
		<item>
		<title>Build Org Charts with PowerShell</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/01/build-org-charts-with-powershell/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/01/build-org-charts-with-powershell/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 16:06:09 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerPack]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Visio]]></category>
		<category><![CDATA[Webcast]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1353</guid>
		<description><![CDATA[Kirk has recently published his Org Chart PowerPack which frankly I myself have been using a lot lately.
For anyone working in a medium to large size of company this is just a great tool to navigate your organization and even produce html and Visio reports about it:

Does your HR have anything like that? Send them [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1353&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Kirk has recently published his <a title="Org Chart PowerPack" href="http://powergui.org/entry.jspa?externalID=2424&amp;categoryID=21" target="_blank">Org Chart PowerPack</a> which frankly I myself have been using a lot lately.</p>
<p>For anyone working in a medium to large size of company this is just a great tool to navigate your organization and even produce html and Visio reports about it:</p>
<p><span style="text-align:center; display: block;"><a href="http://dmitrysotnikov.wordpress.com/2009/07/01/build-org-charts-with-powershell/"><img src="http://img.youtube.com/vi/TRyuVlX3dUY/2.jpg" alt="" /></a></span></p>
<p>Does your HR have anything like that? Send them the link to the demo and get them addicted to PowerShell!</p>
<p>Read more about the PowerPack <a href="http://poshoholic.com/2009/06/27/create-your-own-org-chart-from-ad-with-powergui/">in Kirk&#8217;s blog</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Active+Directory" target="_blank" rel="tag" title="Link to Technorati Tag category for Active Directory">Active Directory</a>, <a href="http://www.technorati.com/tag/Demo" target="_blank" rel="tag" title="Link to Technorati Tag category for Demo">Demo</a>, <a href="http://www.technorati.com/tag/PowerGUI" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerGUI">PowerGUI</a>, <a href="http://www.technorati.com/tag/PowerPack" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerPack">PowerPack</a>, <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a>, <a href="http://www.technorati.com/tag/Reporting" target="_blank" rel="tag" title="Link to Technorati Tag category for Reporting">Reporting</a>, <a href="http://www.technorati.com/tag/Visio" target="_blank" rel="tag" title="Link to Technorati Tag category for Visio">Visio</a>, <a href="http://www.technorati.com/tag/Webcast" target="_blank" rel="tag" title="Link to Technorati Tag category for Webcast">Webcast</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F;title=Build%20Org%20Charts%20with%20PowerShell" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Build%20Org%20Charts%20with%20PowerShell&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F&amp;Title=Build%20Org%20Charts%20with%20PowerShell" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F&amp;title=Build%20Org%20Charts%20with%20PowerShell" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F&amp;title=Build%20Org%20Charts%20with%20PowerShell" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Build%20Org%20Charts%20with%20PowerShell&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F01%2Fbuild%2Dorg%2Dcharts%2Dwith%2Dpowershell%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1353/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1353/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1353/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1353&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/01/build-org-charts-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/TRyuVlX3dUY/2.jpg" medium="image" />
	</item>
		<item>
		<title>Prevent desktop lock or screensaver with PowerShell</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/29/prevent-desktop-lock-or-screensaver-with-powershell/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/29/prevent-desktop-lock-or-screensaver-with-powershell/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:00:53 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[hack]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1348</guid>
		<description><![CDATA[Imagine that there&#8217;s a webcast that you absolutely need to record and your girlfriend calls because she had a bad dream and you need to go to give her consolation, or it&#8217;s your daughter&#8217;s birthday, or simply 11 pm because the Earth is huge and the timezones suck. Your first reaction is to simply try [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1348&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Imagine that there&#8217;s a webcast that you absolutely need to record and your girlfriend calls because she had a bad dream and you need to go to give her consolation, or it&#8217;s your daughter&#8217;s birthday, or simply 11 pm because the Earth is huge and the timezones suck. Your first reaction is to simply try to record the webcast but this is a corporate PC and group policy is configured to lock the desktop after x minutes of inactivity. What do you do?</p>
<p>I found myself in this situation a few days ago, and did not want to search the internet and download a random executable simulating user activity and doing who knows what else on my computer.</p>
<p>Instead I wrote this simple PowerShell script:</p>
<pre><span style="color:#0000FF;">param</span><span style="color:#000000;">(</span><span style="color:#800080;">$minutes</span><span style="color:#000000;"> </span><span style="color:#FF0000;">=</span><span style="color:#000000;"> </span><span style="color:#000000;">60</span><span style="color:#000000;">)

</span><span style="color:#800080;">$myshell</span><span style="color:#000000;"> </span><span style="color:#FF0000;">=</span><span style="color:#000000;"> </span><span style="color:#5F9EA0;font-weight:bold;">New-Object</span><span style="color:#000000;"> -com </span><span style="color:#800000;">"</span><span style="color:#800000;">Wscript.Shell</span><span style="color:#800000;">"</span><span style="color:#000000;">

</span><span style="color:#0000FF;">for</span><span style="color:#000000;"> (</span><span style="color:#800080;">$i</span><span style="color:#000000;"> </span><span style="color:#FF0000;">=</span><span style="color:#000000;"> </span><span style="color:#000000;">0</span><span style="color:#000000;">; </span><span style="color:#800080;">$i</span><span style="color:#000000;"> </span><span style="color:#FF0000;">-lt</span><span style="color:#000000;"> </span><span style="color:#800080;">$minutes</span><span style="color:#000000;">; </span><span style="color:#800080;">$i</span><span style="color:#000000;">++) {
  </span><span style="color:#5F9EA0;font-weight:bold;">Start-Sleep</span><span style="color:#000000;"> </span><span style="color:#5F9EA0;font-style:italic;">-Seconds</span><span style="color:#000000;"> </span><span style="color:#000000;">60</span><span style="color:#000000;">
  </span><span style="color:#800080;">$myshell</span><span style="color:#000000;">.sendkeys(</span><span style="color:#800000;">"</span><span style="color:#800000;">.</span><span style="color:#800000;">"</span><span style="color:#000000;">)
}</span></pre>
<p>All the script does is creates a Windows scripting shell com object, and then for the specified number of minutes (which is a script parameter) every minute presses the &#8220;.&#8221; key.</p>
<p>Then I saved the script as <a href="http://poshcode.org/get/1182">Prevent-Screensaver.ps1</a> file (&#8221;prevent&#8221; is not a proper PowerShell verb, but disable- or stop- do not seem quite right&#8230;) and started it from PowerShell command-line: <code>&amp; c:\Prevent-Screensaver.ps1 120</code></p>
<p>One other thing which I also did was starting a notepad and clicking into it. This made the script output the dots into the application rather than overload Windows input buffer (which would have caused the OS to start beeping.)</p>
<p>Oh, and before anyone adds comments on how I have just ruined desktop security in the enterprise&#8230; By using this you might be circumventing security measures which your company might have for a reason. Check with your HR/IT/legal department/manager when in doubt. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-wink.png' alt=';)' class='wp-smiley' /> </p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a>, <a href="http://www.technorati.com/tag/hack" target="_blank" rel="tag" title="Link to Technorati Tag category for hack">hack</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F;title=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F&amp;Title=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F&amp;title=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F&amp;title=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Prevent%20desktop%20lock%20or%20screensaver%20with%20PowerShell&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F29%2Fprevent%2Ddesktop%2Dlock%2Dor%2Dscreensaver%2Dwith%2Dpowershell%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1348/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1348/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1348/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1348&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/29/prevent-desktop-lock-or-screensaver-with-powershell/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>
	</item>
		<item>
		<title>Exchange 14 PowerGUI wallpaper</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/26/exchange-14-powergui-wallpaper/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/26/exchange-14-powergui-wallpaper/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 10:00:11 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Exchange]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1318</guid>
		<description><![CDATA[Oz (Exchange MVP doing a great series of Exchange/PowerShell/PowerGUI How-To&#8217;s) has also posted a bunch of Exchange 2010 desktop wallpapers &#8211; one of them featuring PowerGUI.
Download them here.
Tags: Exchange, PowerGUI, PowerShell, WallpaperAdd to: &#124; Technorati &#124;  Digg &#124;  del.icio.us &#124;  Yahoo &#124;  BlinkList &#124;  Spurl &#124;  reddit &#124;  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1318&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://cid-f3199bfe32c0a544.skydrive.live.com/browse.aspx/Exchange%20BG?uc=3&amp;isFromRichUpload=1"><img class="alignleft" title="Exchange 2010 PowerGUI/PowerShell wallpaper" src="http://telnet25.files.wordpress.com/2009/06/image28.png?w=152&amp;h=115&#038;h=115" alt="" width="152" height="115" /></a>Oz (Exchange MVP doing a great <a href="http://dmitrysotnikov.wordpress.com/2009/06/12/blog-series-on-powergui-powershell-and-exchange-2007/">series of Exchange/PowerShell/PowerGUI How-To&#8217;s</a>) has also posted a bunch of <a href="http://telnet25.wordpress.com/2009/06/05/kung-fu-panda/">Exchange 2010 desktop wallpapers</a> &#8211; one of them featuring PowerGUI.</p>
<p>Download them <a href="http://cid-f3199bfe32c0a544.skydrive.live.com/browse.aspx/Exchange%20BG?uc=3&amp;isFromRichUpload=1">here</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Exchange" target="_blank" rel="tag" title="Link to Technorati Tag category for Exchange">Exchange</a>, <a href="http://www.technorati.com/tag/PowerGUI" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerGUI">PowerGUI</a>, <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a>, <a href="http://www.technorati.com/tag/Wallpaper" target="_blank" rel="tag" title="Link to Technorati Tag category for Wallpaper">Wallpaper</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F;title=Exchange%2014%20PowerGUI%20wallpaper" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Exchange%2014%20PowerGUI%20wallpaper&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F&amp;Title=Exchange%2014%20PowerGUI%20wallpaper" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F&amp;title=Exchange%2014%20PowerGUI%20wallpaper" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F&amp;title=Exchange%2014%20PowerGUI%20wallpaper" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Exchange%2014%20PowerGUI%20wallpaper&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F26%2Fexchange%2D14%2Dpowergui%2Dwallpaper%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1318/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1318/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1318/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1318&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/26/exchange-14-powergui-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://telnet25.files.wordpress.com/2009/06/image28.png?w=152&#38;h=115" medium="image">
			<media:title type="html">Exchange 2010 PowerGUI/PowerShell wallpaper</media:title>
		</media:content>
	</item>
		<item>
		<title>Add great HTML reports to PowerGUI</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/25/add-great-html-reports-to-powergui/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/25/add-great-html-reports-to-powergui/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 10:00:19 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerPack]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Reporting]]></category>
		<category><![CDATA[Webcast]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1335</guid>
		<description><![CDATA[Kirk has recently published a PowerPack which adds really nice-looking reports to PowerGUI Admin Console. Once you install the pack you will get these reports for any systems you manage: AD, Exchange, Operations Manager, VMware, Hyper-V &#8211; you name it.
See this video for details:

Download the PowerPack here.
Tags: PowerGUI, PowerPack, PowerShell, Reporting, Webcast, videoAdd to: &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1335&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Kirk has <a href="http://poshoholic.com/2009/06/20/just-released-advanced-reporting-powerpack/">recently published a PowerPack</a> which adds really nice-looking reports to PowerGUI Admin Console. Once you install the pack you will get these reports for any systems you manage: AD, Exchange, Operations Manager, VMware, Hyper-V &#8211; you name it.</p>
<p>See this video for details:</p>
<p><span style="text-align:center; display: block;"><a href="http://dmitrysotnikov.wordpress.com/2009/06/25/add-great-html-reports-to-powergui/"><img src="http://img.youtube.com/vi/wkAxbALtELw/2.jpg" alt="" /></a></span></p>
<p>Download the PowerPack <a href="http://powergui.org/entry.jspa?categoryID=21&amp;externalID=2423">here</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/PowerGUI" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerGUI">PowerGUI</a>, <a href="http://www.technorati.com/tag/PowerPack" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerPack">PowerPack</a>, <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a>, <a href="http://www.technorati.com/tag/Reporting" target="_blank" rel="tag" title="Link to Technorati Tag category for Reporting">Reporting</a>, <a href="http://www.technorati.com/tag/Webcast" target="_blank" rel="tag" title="Link to Technorati Tag category for Webcast">Webcast</a>, <a href="http://www.technorati.com/tag/video" target="_blank" rel="tag" title="Link to Technorati Tag category for video">video</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F;title=Add%20great%20HTML%20reports%20to%20PowerGUI" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Add%20great%20HTML%20reports%20to%20PowerGUI&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F&amp;Title=Add%20great%20HTML%20reports%20to%20PowerGUI" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F&amp;title=Add%20great%20HTML%20reports%20to%20PowerGUI" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F&amp;title=Add%20great%20HTML%20reports%20to%20PowerGUI" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Add%20great%20HTML%20reports%20to%20PowerGUI&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F25%2Fadd%2Dgreat%2Dhtml%2Dreports%2Dto%2Dpowergui%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1335/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1335/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1335/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1335&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/25/add-great-html-reports-to-powergui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/wkAxbALtELw/2.jpg" medium="image" />
	</item>
		<item>
		<title>3 cmdlets a day keep the trouble away</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/24/3-cmdlets-a-day-keep-the-trouble-away/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/24/3-cmdlets-a-day-keep-the-trouble-away/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 10:00:17 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerGUI.org]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1338</guid>
		<description><![CDATA[There&#8217;s yet another reason to follow @PowerGUIorg on Twitter. 
Our friendly community site ghost now 3 times a day tweets a random PowerShell cmdlet with the cmdlet name, synopsis, and link to the cmdlet page which has detailed cmdlet information: full description, parameters, examples, and so on.

This should be a great way to learn cmdlets [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1338&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There&#8217;s yet another reason to follow <a href="http://twitter.com/PowerGUIorg">@PowerGUIorg</a> on Twitter. </p>
<p>Our friendly community site ghost now 3 times a day tweets a random PowerShell cmdlet with the cmdlet name, synopsis, and link to the cmdlet page which has detailed cmdlet information: full description, parameters, examples, and so on.</p>
<p><a href="http://twitter.com/PowerGUIorg"><img src="http://dmitrysotnikov.files.wordpress.com/2009/06/sample-powershell-tweet.png?w=500&#038;h=84" alt="sample-powershell-tweet" title="sample-powershell-tweet" width="500" height="84" class="aligncenter size-full wp-image-1339" /></a></p>
<p>This should be a great way to learn cmdlets shipped with PowerShell v2 (some are obviously present in v1 as well) in small easy chunks. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://twitter.com/PowerGUIorg">@PowerGUIorg</a> also tweets each time a new discussion is started <a href="http://powergui.org/forumindex.jspa?categoryID=55">at PowerGUI.org forums</a> &#8211; so you can easily get involved in any topic which you find interesting or perhaps help somebody out if you know the answer.</p>
<p>Follow <a href="http://twitter.com/PowerGUIorg">@PowerGUIorg</a> and let us know what you think. Any ideas on making this feed even more useful are welcome! </p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/PowerGUI" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerGUI">PowerGUI</a>, <a href="http://www.technorati.com/tag/PowerGUI.org" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerGUI.org">PowerGUI.org</a>, <a href="http://www.technorati.com/tag/PowerShell" target="_blank" rel="tag" title="Link to Technorati Tag category for PowerShell">PowerShell</a>, <a href="http://www.technorati.com/tag/Twitter" target="_blank" rel="tag" title="Link to Technorati Tag category for Twitter">Twitter</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F;title=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F" target="_blank">Yahoo</a> |  <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F&amp;Title=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F&amp;title=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F&amp;title=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=3%20cmdlets%20a%20day%20keep%20the%20trouble%20away&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F24%2F3%2Dcmdlets%2Da%2Dday%2Dkeep%2Dthe%2Dtrouble%2Daway%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1338/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1338/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1338/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1338&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/24/3-cmdlets-a-day-keep-the-trouble-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6ecc57e2c1be48013620bf85fb983dbf?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmitrysotnikov</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/06/sample-powershell-tweet.png" medium="image">
			<media:title type="html">sample-powershell-tweet</media:title>
		</media:content>
	</item>
	</channel>
</rss>