<?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>Dmitry's PowerBlog: PowerShell and beyond &#187; Blogosphere</title>
	<atom:link href="http://dmitrysotnikov.wordpress.com/category/blogosphere/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>Mon, 30 Nov 2009 11:00:31 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='dmitrysotnikov.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<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 &#187; Blogosphere</title>
		<link>http://dmitrysotnikov.wordpress.com</link>
	</image>
			<item>
		<title>Adding Direct Reports action</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/09/14/adding-direct-reports-action/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/09/14/adding-direct-reports-action/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 10:34:13 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[AD]]></category>
		<category><![CDATA[AD cmdlets]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[cmdlets]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1520</guid>
		<description><![CDATA[Here&#8217;s my quick addition to Kamran&#8217;s &#8220;How to export data from Active Directory using the free PowerGUI tool&#8220;:
If you might need to find users managed by someone more than once, there are a couple of ways you can make this simpler for your self:
A. Download and install free Org Chart powerpack, or
B. Follow these instructions [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1520&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here&#8217;s my quick addition to Kamran&#8217;s &#8220;<a href="http://activedirectorytools.com/archives/how-to-export-data-from-active-directory-using-the-free-powergui-tool/">How to export data from Active Directory using the free PowerGUI tool</a>&#8220;:</p>
<p>If you might need to find users managed by someone more than once, there are a couple of ways you can make this simpler for your self:</p>
<p>A. Download and install free <a href="http://dmitrysotnikov.wordpress.com/2009/07/01/build-org-charts-with-powershell/">Org Chart powerpack</a>, or</p>
<p>B. Follow these instructions to add a Direct Reports button to PowerGUI admin console:</p>
<p>1. Start <strong>PowerGUI </strong>admin console and browse to <strong>Active Directory / Users</strong>.</p>
<p>2. In the right-hand pane, right-click the category to which you want to add the action and pick <strong>New / Script Action</strong> from the shortcut menu.</p>
<p><img src="http://dmitrysotnikov.files.wordpress.com/2009/09/new-script-action.png?w=351&#038;h=97" alt="new-script-action" title="new-script-action" width="351" height="97" class="aligncenter size-full wp-image-1521" /></p>
<p>3. In the <strong>New Action</strong> dialog box, type in the action name (e.g. <em>Direct Reports</em>), and script:</p>
<pre><span style="color:#800080;">$input</span><span style="color:#000000;"> | </span><span style="color:#5F9EA0;font-weight:bold;">ForEach-Object</span><span style="color:#000000;"> {
    </span><span style="color:#5F9EA0;font-weight:bold;">Get-QADUser</span><span style="color:#000000;"> </span><span style="color:#5F9EA0;font-style:italic;">-Manager</span><span style="color:#000000;"> </span><span style="color:#800080;">$_</span><span style="color:#000000;">
}</span></pre>
<p>(The script is quite trivial: for each user account currently selected in the PowerGUI grid, we get the list of AD users which have this object specified as <code>Manager</code>).</p>
<p><img src="http://dmitrysotnikov.files.wordpress.com/2009/09/direct-reports.png?w=403&#038;h=332" alt="direct-reports" title="direct-reports" width="403" height="332" class="aligncenter size-full wp-image-1522" /></p>
<p>3. On that same dialog box, click the <strong>Display Configuration</strong> button, and then in the <strong>Display results</strong> group, select the <strong>Display the results in a nested view</strong> option. </p>
<p>This tells PowerGUI that your action outputs objects to the grid (which it does &#8211; we need to see the reports selected user has!)</p>
<p><a href="http://dmitrysotnikov.files.wordpress.com/2009/09/nested-view.png"><img src="http://dmitrysotnikov.files.wordpress.com/2009/09/nested-view.png?w=266&#038;h=300" alt="nested-view" title="nested-view" width="266" height="300" class="aligncenter size-medium wp-image-1523" /></a></p>
<p>4. That&#8217;s it! Click <strong>OK </strong>on both dialog boxes, select the user account whose reports you need to see, and click your newly added <em>Direct Reports</em> action.</p>
<p>Big thanks to Kamran for <a href="http://activedirectorytools.com/archives/how-to-export-data-from-active-directory-using-the-free-powergui-tool/">posting his original tip and video</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/AD" target="_blank" rel="tag" title="Link to Technorati Tag category for AD">AD</a>, <a href="http://www.technorati.com/tag/AD+cmdlets" target="_blank" rel="tag" title="Link to Technorati Tag category for AD cmdlets">AD cmdlets</a>, <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/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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/cmdlets" target="_blank" rel="tag" title="Link to Technorati Tag category for cmdlets">cmdlets</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F;title=Adding%20Direct%20Reports%20action" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Adding%20Direct%20Reports%20action&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%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%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F&amp;Title=Adding%20Direct%20Reports%20action" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F&amp;title=Adding%20Direct%20Reports%20action" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F&amp;title=Adding%20Direct%20Reports%20action" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Adding%20Direct%20Reports%20action&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F09%2F14%2Fadding%2Ddirect%2Dreports%2Daction%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1520/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1520/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1520/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1520&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/09/14/adding-direct-reports-action/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/09/new-script-action.png" medium="image">
			<media:title type="html">new-script-action</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/09/direct-reports.png" medium="image">
			<media:title type="html">direct-reports</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/09/nested-view.png?w=266" medium="image">
			<media:title type="html">nested-view</media:title>
		</media:content>
	</item>
		<item>
		<title>Opening up PowerGUI.org</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/07/31/opening-up-powergui-org/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/07/31/opening-up-powergui-org/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 16:20:23 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[PowerGUI.org]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1434</guid>
		<description><![CDATA[We have made a change in the blog post webpart at our community site &#8211; PowerGUI.org: now it can provide links to blogs more than one blog. Specifically, it now features posts by myself, Kirk Munro, and Shay Levy.
For historical reasons, up to now the webpart only had posts from my blog. Which was obviously [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1434&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://powergui.org"><img src="http://dmitrysotnikov.files.wordpress.com/2009/07/powergui_blogroll.png?w=145&#038;h=300" alt="PowerGUI_Blogroll" title="PowerGUI_Blogroll" width="145" height="300" class="alignleft size-medium wp-image-1436" /></a>We have made a change in the blog post webpart at our community site &#8211; PowerGUI.org: now it can provide links to blogs more than one blog. Specifically, it now features posts by myself, <a href="http://poshoholic.com">Kirk Munro</a>, and <a href="http://blogs.microsoft.co.il/blogs/scriptfanatic/">Shay Levy</a>.</p>
<p>For historical reasons, up to now the webpart only had posts from my blog. Which was obviously a really selfish and outdated thing to have. Shay and Kirk are these days more active on the site forums than I am, and their blogs are well worth following.</p>
<p>Hopefully, this makes staying in touch with the PowerGUI community even easier.</p>
<p>By now means this is limited to just three blogs. If you are active at PowerGUI.org and blog at least once or twice a week about PowerGUI or QAD cmdlets &#8211; please contact me and I will happily add your feed in there.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</a>, <a href="http://www.technorati.com/tag/Blogroll" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogroll">Blogroll</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></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F;title=Opening%20up%20PowerGUI%2Eorg" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Opening%20up%20PowerGUI%2Eorg&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%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%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F&amp;Title=Opening%20up%20PowerGUI%2Eorg" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F&amp;title=Opening%20up%20PowerGUI%2Eorg" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F&amp;title=Opening%20up%20PowerGUI%2Eorg" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Opening%20up%20PowerGUI%2Eorg&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F07%2F31%2Fopening%2Dup%2Dpowergui%2Dorg%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1434/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1434/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1434/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1434&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/07/31/opening-up-powergui-org/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/powergui_blogroll.png?w=145" medium="image">
			<media:title type="html">PowerGUI_Blogroll</media:title>
		</media:content>
	</item>
		<item>
		<title>Interactive PowerGUI Blog Badges</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/18/interactive-powergui-blog-badges/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/18/interactive-powergui-blog-badges/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 10:00:35 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerGUI.org]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1292</guid>
		<description><![CDATA[This is part two of the PowerGUI.org blog badges instructions. In part one we learned how to add a PowerGUI graphics widget.
Today I will show how to add a widget dynamically showing your latest threads or messages at our PowerShell discussion forums.
As you can see I have one in the right-hand column of this blog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1292&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is part two of the PowerGUI.org blog badges instructions. In part one we learned <a href="http://dmitrysotnikov.wordpress.com/2009/06/17/powergui-blog-badges/">how to add a PowerGUI graphics widget</a>.</p>
<p>Today I will show how to add a widget dynamically showing your latest threads or messages at our <a href="http://powergui.org/forumindex.jspa?categoryID=55">PowerShell discussion forums</a>.</p>
<p>As you can see I have one in the right-hand column of this blog and it looks like:</p>
<p><img src="http://dmitrysotnikov.files.wordpress.com/2009/06/thread_widget1.png?w=234&#038;h=157" alt="Thread_Widget" title="Thread_Widget" width="234" height="157" class="aligncenter size-full wp-image-1298" /></p>
<p>To add such a widget in <a href="http://wordpress.com">wordpress</a>, go to <strong>Dashboard</strong>/<strong>Appearance</strong>/<strong>Widgets</strong>, add an <strong>RSS</strong> gadget and paste the following RSS feed link (<strong>make sure you change my name to your PowerGUI.org name and replace space with %20</strong>):</p>
<p><code>http://www.powergui.org/rss/rssmessages.jspa?categoryID=55&amp;RssUsername=<strong>Dmitry%20Sotnikov</strong></code></p>
<p>For wordpress, the widget will then look like:</p>
<p><img src="http://dmitrysotnikov.files.wordpress.com/2009/06/rss_widget1.png?w=448&#038;h=315" alt="RSS_Widget" title="RSS_Widget" width="448" height="315" class="aligncenter size-full wp-image-1299" /></p>
<p>Type something like &#8220;My recent posts at PowerGUI.org&#8221; to the feed title, and select the number of items to show.</p>
<p>Then save the changes and you are good to go!</p>
<p>If you want the widget to display recent <strong>threads</strong>(rather than posts) use this RSS feed instead:</p>
<p><code>http://www.powergui.org/rss/rssthreads.jspa?categoryID=55</code></p>
<p>That&#8217;s it. If you want to add graphics &#8211; <a href="http://dmitrysotnikov.wordpress.com/2009/06/17/powergui-blog-badges/">see my previous post</a>.</p>
<p>If you are on platforms other than wordpress or have other ideas of PowerGUI widgets – please post them on your blog and add the link in your comments to this post. Please help us spread the news of PowerShell, PowerGUI and PowerGUI.org to a wider community!</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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/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/gadgets" target="_blank" rel="tag" title="Link to Technorati Tag category for gadgets">gadgets</a>, <a href="http://www.technorati.com/tag/widgets" target="_blank" rel="tag" title="Link to Technorati Tag category for widgets">widgets</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F;title=Interactive%20PowerGUI%20Blog%20Badges" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Interactive%20PowerGUI%20Blog%20Badges&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%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%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F&amp;Title=Interactive%20PowerGUI%20Blog%20Badges" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F&amp;title=Interactive%20PowerGUI%20Blog%20Badges" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F&amp;title=Interactive%20PowerGUI%20Blog%20Badges" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Interactive%20PowerGUI%20Blog%20Badges&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F18%2Finteractive%2Dpowergui%2Dblog%2Dbadges%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1292/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1292/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1292/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1292&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/18/interactive-powergui-blog-badges/feed/</wfw:commentRss>
		<slash:comments>1</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/thread_widget1.png" medium="image">
			<media:title type="html">Thread_Widget</media:title>
		</media:content>

		<media:content url="http://dmitrysotnikov.files.wordpress.com/2009/06/rss_widget1.png" medium="image">
			<media:title type="html">RSS_Widget</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerGUI Blog Badges</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/06/17/powergui-blog-badges/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/06/17/powergui-blog-badges/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 14:28:50 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerGUI.org]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=1287</guid>
		<description><![CDATA[The easiest way to promote your favorite PowerShell tool on your blog or website is add one of our PowerGUI.org badges to it. You can borrow the images which Susan posted here or copy/paste the html code from below:
My examples below are for wordpress - this is the platform which I am using and for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1287&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The easiest way to promote your favorite PowerShell tool on your blog or website is add one of our PowerGUI.org badges to it. You can borrow the images which Susan posted <a href="http://powergui.org/thread.jspa?threadID=9270&amp;tstart=0">here</a> or copy/paste the html code from below:</p>
<p>My examples below are for <a href="http://wordpress.com">wordpress </a>- this is the platform which I am using and for which I tested these. (Please post your instructions for other platforms.)</p>
<p><strong>Static Images</strong></p>
<p>To add these, add <strong>Text </strong>widget in your wordpress <strong>Dashboard</strong>/<strong>Appearance</strong>/<strong>Widgets</strong> and paste the corresponding html code:</p>
<p><a title="For PowerShell, I love PowerGUI" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29383-3688/bn1-powergui-200x75.gif" alt="For PowerShell, I love PowerGUI" width="200" height="75" /></a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="For PowerShell, I love PowerGUI"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29383-3688/bn1-powergui-200x75.gif" alt="For PowerShell, I love PowerGUI" height="75" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell IDE is PowerGUI" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29383-3689/bn2-powergui-200x100.gif" alt="My PowerShell IDE is PowerGUI" width="200" height="100" /> </a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell IDE is PowerGUI"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29383-3689/bn2-powergui-200x100.gif" alt="My PowerShell IDE is PowerGUI" height="100" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell community is PowerGUI.org" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3690/bn1-powergui-200x100.gif" alt="My PowerShell community is PowerGUI.org" width="200" height="100" /></a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell community is PowerGUI.org"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3690/bn1-powergui-200x100.gif" alt="My PowerShell community is PowerGUI.org" height="100" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell community is PowerGUI.org" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3691/bn2-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" width="200" height="75" /> </a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell community is PowerGUI.org"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3691/bn2-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" height="75" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell community is PowerGUI.org" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3695/bn5-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" width="200" height="75" /> </a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell community is PowerGUI.org"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3695/bn5-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" height="75" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell community is PowerGUI.org" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3694/bn3-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" width="200" height="75" /> </a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell community is PowerGUI.org"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3694/bn3-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" height="75" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p><a title="My PowerShell community is PowerGUI.org" href="http://powergui.org/"> <img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29391-3697/bn4-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" width="200" height="75" /> </a></p>
<p><code>&lt;p&gt;</code><br />
<code>&lt;a href="http://powergui.org" title="My PowerShell community is PowerGUI.org"&gt;</code><br />
<code>&lt;img src="http://powergui.org/servlet/JiveServlet/download/118-9270-29391-3697/bn4-powergui-200x75.gif" alt="My PowerShell community is PowerGUI.org" height="75" width="200" /&gt;</code><br />
<code>&lt;/a&gt;</code><br />
<code>&lt;/p&gt;</code></p>
<p>Instead of PowerGUI.org you can obviously link to a specific forum or even your profile page at PowerGUI.org &#8211; just click your username next to your post there to get link to that page. You profile contains whatever information you supplied and links to your latest messages.</p>
<p>Tomorrow I will show how you can create interactive widgets automatically showing your latest messages or threads in our forums.</p>
<p>If you are on platforms other than wordpress or have other ideas of PowerGUI widgets &#8211; please post them on your blog and add the link in your comments to this post. Please help us spread the news of PowerShell, PowerGUI and PowerGUI.org to a wider community!</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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/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/widgets" target="_blank" rel="tag" title="Link to Technorati Tag category for widgets">widgets</a>, <a href="http://www.technorati.com/tag/gadgets" target="_blank" rel="tag" title="Link to Technorati Tag category for gadgets">gadgets</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F;title=PowerGUI%20Blog%20Badges" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=PowerGUI%20Blog%20Badges&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%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%2F17%2Fpowergui%2Dblog%2Dbadges%2F&amp;Title=PowerGUI%20Blog%20Badges" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F&amp;title=PowerGUI%20Blog%20Badges" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F&amp;title=PowerGUI%20Blog%20Badges" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=PowerGUI%20Blog%20Badges&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F06%2F17%2Fpowergui%2Dblog%2Dbadges%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/1287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/1287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/1287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=1287&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/06/17/powergui-blog-badges/feed/</wfw:commentRss>
		<slash:comments>5</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://powergui.org/servlet/JiveServlet/download/118-9270-29383-3688/bn1-powergui-200x75.gif" medium="image">
			<media:title type="html">For PowerShell, I love PowerGUI</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29383-3689/bn2-powergui-200x100.gif" medium="image">
			<media:title type="html">My PowerShell IDE is PowerGUI</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3690/bn1-powergui-200x100.gif" medium="image">
			<media:title type="html">My PowerShell community is PowerGUI.org</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29384-3691/bn2-powergui-200x75.gif" medium="image">
			<media:title type="html">My PowerShell community is PowerGUI.org</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3695/bn5-powergui-200x75.gif" medium="image">
			<media:title type="html">My PowerShell community is PowerGUI.org</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29388-3694/bn3-powergui-200x75.gif" medium="image">
			<media:title type="html">My PowerShell community is PowerGUI.org</media:title>
		</media:content>

		<media:content url="http://powergui.org/servlet/JiveServlet/download/118-9270-29391-3697/bn4-powergui-200x75.gif" medium="image">
			<media:title type="html">My PowerShell community is PowerGUI.org</media:title>
		</media:content>
	</item>
		<item>
		<title>New VMware PowerShell Blog</title>
		<link>http://dmitrysotnikov.wordpress.com/2009/01/05/new-vmware-powershell-blog/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2009/01/05/new-vmware-powershell-blog/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 09:00:54 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=938</guid>
		<description><![CDATA[Scott Herold has just started blogging. 
Scott is one of key guys at Vizioncore and the guy behind some of the most widely used tools in the VMware space. He has recently become converted to PowerShell through his use of VI Toolkit and PowerGUI, and was even helping Kirk with the VMware PowerPack.
It is very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=938&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://dmitrysotnikov.files.wordpress.com/2009/01/scott-herold.jpg?w=100&#038;h=140" alt="Scott Herold" title="Scott Herold" width="100" height="140" class="alignleft size-full wp-image-939" />Scott Herold has just <a href="http://www.vmguru.com/">started blogging</a>. </p>
<p><a href="http://www.quest.com/newsroom/Scott-Herold.aspx">Scott</a> is one of key guys at Vizioncore and the guy behind some of the most widely used tools in the VMware space. He has recently become converted to PowerShell through his use of <a href="http://vmware.com/go/powershell">VI Toolkit</a> and <a href="http://powergui.org">PowerGUI</a>, and was even helping <a href="http://poshoholic.com/2008/12/19/vmware-infrastructure-powerpack-20-is-now-available/">Kirk with the VMware PowerPack</a>.</p>
<p>It is very cool to see people coming to PowerShell from their specific platform areas, and I highly recommend checking out Scott&#8217;s blog if you are managing VMware infrastructure. I myself will go and subscribe once I click Publish for this blog post. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can find Scott&#8217;s blog <a href="http://www.vmguru.com/">here</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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/VMware" target="_blank" rel="tag" title="Link to Technorati Tag category for VMware">VMware</a>, <a href="http://www.technorati.com/tag/Virtualization" target="_blank" rel="tag" title="Link to Technorati Tag category for Virtualization">Virtualization</a></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F;title=New%20VMware%20PowerShell%20Blog" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=New%20VMware%20PowerShell%20Blog&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%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%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F&amp;Title=New%20VMware%20PowerShell%20Blog" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F&amp;title=New%20VMware%20PowerShell%20Blog" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F&amp;title=New%20VMware%20PowerShell%20Blog" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=New%20VMware%20PowerShell%20Blog&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2009%2F01%2F05%2Fnew%2Dvmware%2Dpowershell%2Dblog%2F" target="_blank">Furl</a> |  </span></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/938/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=938&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2009/01/05/new-vmware-powershell-blog/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/01/scott-herold.jpg" medium="image">
			<media:title type="html">Scott Herold</media:title>
		</media:content>
	</item>
		<item>
		<title>OCS blog by Curtis</title>
		<link>http://dmitrysotnikov.wordpress.com/2008/08/25/ocs-blog-by-curtis/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2008/08/25/ocs-blog-by-curtis/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 08:38:09 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[OCS]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerPack]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/?p=580</guid>
		<description><![CDATA[Curtis Johnstone &#8211; the author of the best OCS Management Console (which coincidentally is a PowerPack  ) has just started blogging!
His blog already has posts on the DNS records Office Communicator uses for automated sign-in, the ports OCS requires you to open on your firewalls, and on the latest updates to his OCS PowerPack.
If [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=580&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://dmitrysotnikov.files.wordpress.com/2008/08/curtis-johnstone.jpg?w=100&#038;h=140" alt="" width="100" height="140" class="alignleft size-full wp-image-581" />Curtis Johnstone &#8211; the author of <a href="http://dmitrysotnikov.wordpress.com/2008/06/20/ocs-management-console-on-steroids/">the best OCS Management Console</a> (which coincidentally is a PowerPack <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) has just started <a href="http://blog.insideocs.com/">blogging</a>!</p>
<p>His blog already has posts on the <a href="http://blog.insideocs.com/2008/08/19/dns-records-and-office-communicator-automatic-client-sign-in/">DNS records Office Communicator uses for automated sign-in</a>, the <a href="http://blog.insideocs.com/2008/08/20/what-ports-do-i-need-to-open-on-my-firewall/">ports OCS requires you to open on your firewalls</a>, and on the <a href="http://blog.insideocs.com/2008/08/25/ocs-2007-powergui-powerpack-updated/">latest updates to his OCS PowerPack</a>.</p>
<p>If you are working with Office Communications Server, this is one of those blogs you need to watch! I obviously hope that it will also have as much of the related PowerShell content as Curtis can fit in. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You can find the blog <a href="http://blog.insideocs.com/">here</a>.</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</a>, <a href="http://www.technorati.com/tag/OCS" target="_blank" rel="tag" title="Link to Technorati Tag category for OCS">OCS</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></span><br /><span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F;title=OCS%20blog%20by%20Curtis" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=OCS%20blog%20by%20Curtis&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%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%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F&amp;Title=OCS%20blog%20by%20Curtis" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F&amp;title=OCS%20blog%20by%20Curtis" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F&amp;title=OCS%20blog%20by%20Curtis" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=OCS%20blog%20by%20Curtis&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2008%2F08%2F25%2Focs%2Dblog%2Dby%2Dcurtis%2F" target="_blank">Furl</a> |  </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmitrysotnikov.wordpress.com/580/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmitrysotnikov.wordpress.com/580/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=580&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2008/08/25/ocs-blog-by-curtis/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/2008/08/curtis-johnstone.jpg" medium="image" />
	</item>
		<item>
		<title>PowerShell blogs in Russian</title>
		<link>http://dmitrysotnikov.wordpress.com/2007/12/05/powershell-blogs-in-russian/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2007/12/05/powershell-blogs-in-russian/#comments</comments>
		<pubDate>Wed, 05 Dec 2007 08:32:21 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Russian]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/2007/12/05/powershell-blogs-in-russian/</guid>
		<description><![CDATA[Local Microsoft and PowerShell fans at Platforma 2008 talked me into setting up a separate blog on PowerShell in Russian. So if you are a Russian-speaker &#8211; you&#8217;ve got another source of information available. From now on all Russia-related blog entries will go there.
Other two PowerShell blogs in Russian you might want to check out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=285&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Local Microsoft and PowerShell fans at Platforma 2008 talked me into setting up a separate <a href="http://www.itcommunity.ru/blogs/dmitrysotnikov/">blog on PowerShell in Russian</a>. So if you are a Russian-speaker &#8211; you&#8217;ve got another source of information available. From now on all Russia-related blog entries will go there.</p>
<p>Other two PowerShell blogs in Russian you might want to check out are the ones by:</p>
<ul>
<li><a href="http://xaegr.wordpress.com">Vassily Gusev (aka xaegr)</a></li>
<li><a href="http://www.itcommunity.ru/blogs/abeshkov/default.aspx"> Andrey Beshkov</a></li>
</ul>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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/Russian" target="_blank" rel="tag" title="Link to Technorati Tag category for Russian">Russian</a></span><br />
<span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F;title=PowerShell%20blogs%20in%20Russian" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=PowerShell%20blogs%20in%20Russian&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%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%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F&amp;Title=PowerShell%20blogs%20in%20Russian" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F&amp;title=PowerShell%20blogs%20in%20Russian" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F&amp;title=PowerShell%20blogs%20in%20Russian" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=PowerShell%20blogs%20in%20Russian&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F12%2F04%2Fpowershell%2Dblogs%2Din%2Drussian%2F" target="_blank">Furl</a> |  </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmitrysotnikov.wordpress.com/285/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmitrysotnikov.wordpress.com/285/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=285&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2007/12/05/powershell-blogs-in-russian/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>MCS Ireland using PowerGUI</title>
		<link>http://dmitrysotnikov.wordpress.com/2007/11/14/mcs-ireland-using-powergui/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2007/11/14/mcs-ireland-using-powergui/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 08:43:50 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Exchange]]></category>
		<category><![CDATA[Exchange 2007]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/2007/11/14/mcs-ireland-using-powergui/</guid>
		<description><![CDATA[Looks like Microsoft Consulting Services in Ireland started using PowerGUI for Exchange 2007 management. Check this out: Exchange 2007 Powershell Answer –The PowerGUI
Tags: Blogosphere, Exchange, Exchange 2007, PowerGUI, PowerShell
Add to: &#124; Technorati &#124;  Digg &#124;  del.icio.us &#124;  Yahoo &#124;  BlinkList &#124;  Spurl &#124;  reddit &#124;   Furl &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=266&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Looks like Microsoft Consulting Services in Ireland started using <a href="http://dmitrysotnikov.wordpress.com/2007/07/11/something-missing-in-exchange-2007-console-powergui-has-that/">PowerGUI for Exchange 2007 management</a>. Check this out: <a href="http://blogs.technet.com/mcs-ireland-infrastructure/archive/2007/11/09/exchange-2007-powershell-answer-the-powergui.aspx">Exchange 2007 Powershell Answer –The PowerGUI</a></p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</a>, <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/Exchange+2007" target="_blank" rel="tag" title="Link to Technorati Tag category for Exchange 2007">Exchange 2007</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></span><br />
<span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F;title=MCS%20Ireland%20using%20PowerGUI" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=MCS%20Ireland%20using%20PowerGUI&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%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%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F&amp;Title=MCS%20Ireland%20using%20PowerGUI" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F&amp;title=MCS%20Ireland%20using%20PowerGUI" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F&amp;title=MCS%20Ireland%20using%20PowerGUI" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=MCS%20Ireland%20using%20PowerGUI&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F11%2F14%2Fmcs%2Direland%2Dusing%2Dpowergui%2F" target="_blank">Furl</a> |  </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmitrysotnikov.wordpress.com/266/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmitrysotnikov.wordpress.com/266/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=266&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2007/11/14/mcs-ireland-using-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>
	</item>
		<item>
		<title>Creating test AD users (improved)</title>
		<link>http://dmitrysotnikov.wordpress.com/2007/10/23/creating-test-ad-users-improved/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2007/10/23/creating-test-ad-users-improved/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 17:50:21 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[AD]]></category>
		<category><![CDATA[AD cmdlets]]></category>
		<category><![CDATA[Active Directory]]></category>
		<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[one-liner]]></category>
		<category><![CDATA[oneliner]]></category>
		<category><![CDATA[provisioning]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/2007/10/23/creating-test-ad-users-improved/</guid>
		<description><![CDATA[One of the kicks of PowerShell is taking someone else&#8217;s script and making it even shorter.   This was exactly my first thought when I found this test AD user creation script by Austin (found via Bob).
Austin&#8217;s script is perfectly fine but you can make it shorter by getting rid of csv step and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=254&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the kicks of PowerShell is taking someone else&#8217;s script and making it even shorter. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  This was exactly my first thought when I found this <a href="http://winserverteam.org.uk/blogs/austin/archive/2007/10/22/creating-test-ad-users-with-powershell.aspx">test AD user creation script by Austin</a> (found <a href="http://activefolder.blogspot.com/2007/10/creating-test-ad-user-accounts-with.html">via Bob</a>).</p>
<p>Austin&#8217;s script is perfectly fine but you can make it shorter by getting rid of csv step and enabling the accounts on the fly.</p>
<p>So here&#8217;s how I would create 500 test user accounts:</p>
<p><code><span style="color:#000000;">1</span><span style="color:#000000;">.</span><span style="color:#000000;">.500</span><span style="color:#000000;"> | </span><span style="color:#5f9ea0;font-weight:bold;">ForEach-Object</span><span style="color:#000000;"> {<br />
</span><span style="color:#5f9ea0;font-weight:bold;">New-QADUser</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-ParentContainer</span><span style="color:#000000;"> ps64.local/test </span><span style="color:#5f9ea0;font-style:italic;">-Name</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">testuser$_</span><span style="color:#800000;">"</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-SamAccountName</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">testuser$_</span><span style="color:#800000;">"</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-UserPrincipalName</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">testuser$_@example.com</span><span style="color:#800000;">"</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-FirstName</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">testUser$_</span><span style="color:#800000;">"</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-LastName</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">example$_</span><span style="color:#800000;">"</span><span style="color:#000000;"> </span><span style="color:#5f9ea0;font-style:italic;">-UserPassword</span><span style="color:#000000;"> </span><span style="color:#800000;">"</span><span style="color:#800000;">password_123</span><span style="color:#800000;">"</span><span style="color:#000000;"> | </span><span style="color:#5f9ea0;font-weight:bold;">Enable-QADUser</span><span style="color:#000000;"><br />
}</span></code></p>
<p>I think this is pretty self-describing. I am using the <code>1..500</code> cycle to get a collection of these 500 numbers, and then put them inside the string parameters (make sure you use double quotes!) in the <code>ForEach-Object</code> cycle. Finally the objects are passed to <code>Enable-QADUser</code> so the accounts get enabled.</p>
<p>Pretty cool, eh?</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/AD" target="_blank" rel="tag" title="Link to Technorati Tag category for AD">AD</a>, <a href="http://www.technorati.com/tag/AD+cmdlets" target="_blank" rel="tag" title="Link to Technorati Tag category for AD cmdlets">AD cmdlets</a>, <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/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</a>, <a href="http://www.technorati.com/tag/Examples" target="_blank" rel="tag" title="Link to Technorati Tag category for Examples">Examples</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/one-liner" target="_blank" rel="tag" title="Link to Technorati Tag category for one-liner">one-liner</a>, <a href="http://www.technorati.com/tag/oneliner" target="_blank" rel="tag" title="Link to Technorati Tag category for oneliner">oneliner</a>, <a href="http://www.technorati.com/tag/provisioning" target="_blank" rel="tag" title="Link to Technorati Tag category for provisioning">provisioning</a></span><br />
<span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F;title=Creating%20test%20AD%20users%20%28improved%29" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Creating%20test%20AD%20users%20%28improved%29&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%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%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F&amp;Title=Creating%20test%20AD%20users%20%28improved%29" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F&amp;title=Creating%20test%20AD%20users%20%28improved%29" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F&amp;title=Creating%20test%20AD%20users%20%28improved%29" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Creating%20test%20AD%20users%20%28improved%29&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F23%2Fcreating%2Dtest%2Dad%2Dusers%2Dimproved%2F" target="_blank">Furl</a> |  </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmitrysotnikov.wordpress.com/254/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmitrysotnikov.wordpress.com/254/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/254/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/254/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/254/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=254&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2007/10/23/creating-test-ad-users-improved/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>Customizing syntax highlight</title>
		<link>http://dmitrysotnikov.wordpress.com/2007/10/12/customizing-syntax-highlight/</link>
		<comments>http://dmitrysotnikov.wordpress.com/2007/10/12/customizing-syntax-highlight/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 07:45:24 +0000</pubDate>
		<dc:creator>Dmitry Sotnikov</dc:creator>
				<category><![CDATA[Blogosphere]]></category>
		<category><![CDATA[PowerGUI]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://dmitrysotnikov.wordpress.com/2007/10/12/customizing-syntax-highlight/</guid>
		<description><![CDATA[Cash has a post on his blog on customizing the way PowerGUI highlights PowerShell code. Check this out if you are not 100% satisfied with the default way. (Direct XML edits are dangerous, use with caution, back up, bla-bla-bla&#8230;)
Tags: Blogosphere, PowerGUI, PowerShell
Add to: &#124; Technorati &#124;  Digg &#124;  del.icio.us &#124;  Yahoo &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=250&subd=dmitrysotnikov&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Cash has a post on his blog <a href="http://cashfoley.com/2007/10/10/CustomizingPowerGUIsSyntaxHighlighting.aspx">on customizing the way PowerGUI highlights PowerShell code</a>. Check this out if you are not 100% satisfied with the default way. (Direct XML edits are dangerous, use with caution, back up, bla-bla-bla&#8230;)</p>
<p><span class="technoratitag">Tags: <a href="http://www.technorati.com/tag/Blogosphere" target="_blank" rel="tag" title="Link to Technorati Tag category for Blogosphere">Blogosphere</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></span><br />
<span class="sociallinks">Add to: | <a href="http://technorati.com/faves?add=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F" target="_blank">Technorati</a> |  <a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F" target="_blank">Digg</a> |  <a href="http://del.icio.us/post?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F;title=Customizing%20syntax%20highlight" target="_blank">del.icio.us</a> |  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?t=Customizing%20syntax%20highlight&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%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%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F&amp;Title=Customizing%20syntax%20highlight" target="_blank">BlinkList</a> |  <a href="http://www.spurl.net/spurl.php?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F&amp;title=Customizing%20syntax%20highlight" target="_blank">Spurl</a> |  <a href="http://reddit.com/submit?url=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F&amp;title=Customizing%20syntax%20highlight" target="_blank">reddit</a> |   <a href="http://www.furl.net/storeIt.jsp?t=Customizing%20syntax%20highlight&amp;u=http%3A%2F%2Fdmitrysotnikov%2Ewordpress%2Ecom%2F2007%2F10%2F15%2Fcustomizing%2Dsyntax%2Dhighlight%2F" target="_blank">Furl</a> |  </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dmitrysotnikov.wordpress.com/250/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dmitrysotnikov.wordpress.com/250/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dmitrysotnikov.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dmitrysotnikov.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dmitrysotnikov.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dmitrysotnikov.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dmitrysotnikov.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dmitrysotnikov.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dmitrysotnikov.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dmitrysotnikov.wordpress.com/250/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dmitrysotnikov.wordpress.com/250/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dmitrysotnikov.wordpress.com/250/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dmitrysotnikov.wordpress.com&blog=867377&post=250&subd=dmitrysotnikov&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dmitrysotnikov.wordpress.com/2007/10/12/customizing-syntax-highlight/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>
	</channel>
</rss>