<?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>blog.powershell.no &#187; Virtualization</title>
	<atom:link href="http://blog.powershell.no/category/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.powershell.no</link>
	<description>On Windows PowerShell and other admin-related topics</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blog.powershell.no' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/e22e511529c14fbc92cde5589d6231b4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>blog.powershell.no &#187; Virtualization</title>
		<link>http://blog.powershell.no</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blog.powershell.no/osd.xml" title="blog.powershell.no" />
	<atom:link rel='hub' href='http://blog.powershell.no/?pushpress=hub'/>
		<item>
		<title>Hyper-V: How to unbind a physical NIC from a Virtual Switch using WMI and PowerShell</title>
		<link>http://blog.powershell.no/2011/08/30/hyper-v-how-to-unbind-a-physical-nic-from-a-virtual-switch-using-wmi-and-powershell/</link>
		<comments>http://blog.powershell.no/2011/08/30/hyper-v-how-to-unbind-a-physical-nic-from-a-virtual-switch-using-wmi-and-powershell/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 18:50:33 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[Hyper-V R2]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[unbind ethernet port]]></category>

		<guid isPermaLink="false">https://janegilring.wordpress.com/2011/08/30/hyper-v-how-to-unbind-a-physical-nic-from-a-virtual-switch-using-wmi-and-powershell/</guid>
		<description><![CDATA[If you`re not already familiar with networking in Microsoft Hyper-V I would recommend you to have a look at this whitepaper from Microsoft, which described how networking works in Hyper-V. The following solution will describe a problem which might occur when configuring virtual networks in Hyper-V. Consider the following scenario: You`re about to configure a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=912&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you`re not already familiar with networking in Microsoft Hyper-V I would recommend you to have a look at <a href="http://www.microsoft.com/download/en/details.aspx?id=9843">this</a> whitepaper from Microsoft, which described how networking works in Hyper-V.</p>
<p>The following solution will describe a problem which might occur when configuring virtual networks in Hyper-V. Consider the following scenario:</p>
<ul>
<li>You`re about to configure a new external virtual network in Hyper-V using Hyper-V Manager remotely from another computer. This is a common scenario when working with the Core edition of Windows Server 2008/2008 R2.</li>
<li>When selecting the physical NIC to bind to the new virtual network, you choose the adapter which you are remotely connecting to the Hyper-V host through.</li>
</ul>
<p>What happens in this scenario is that the Virtual Switch Management Service is <a href="http://msdn.microsoft.com/en-us/library/cc136768(v=vs.85).aspx">binding</a> the external Ethernet port for the selected NIC to the Microsoft Windows Virtualization network subsystem. What normally should happen next is that the converted Ethernet port should be bound to the new virtual switch you are creating. However, this never happens since the NIC you are remotely managing the Hyper-V host through is no longer available in the parent operating system. This leaves the NIC in an “orphaned” state, since you cannot use the NIC in the parent operating system, and it`s not in use by any virtual networks.</p>
<p>To resolve this issue, whether using the full GUI version or the Core version of Windows Server, you need to manually unbind the the Ethernet port. There is an UnbindExternalEthernetPort available on the Msvm_VirtualSwitchManagementService WMI class, which is fully documented in <a href="http://msdn.microsoft.com/en-us/library/cc136981(v=vs.85).aspx">this</a> article on MSDN.</p>
<p>To invoke the WMI method we can use Windows PowerShell. To ease the procedure I`ve created a PowerShell function you can use if you ever come into the need for manually unbinding an external Ethernet port in Hyper-V:</p>
<p>&nbsp;</p>
<p><span style="color:#00008b;">Function</span><span style="color:#000000;"> </span><span style="color:#8a2be2;">Select-List</span><br />
<span style="color:#000000;">{</span><br />
<span style="color:#000000;">    </span><span style="color:#00008b;">Param</span><span style="color:#000000;">   </span><span style="color:#000000;">(</span><span style="color:#a9a9a9;">[</span><span style="color:#add8e6;">Parameter</span><span style="color:#000000;">(</span><span style="color:#000000;">Mandatory</span><span style="color:#a9a9a9;">=</span><span style="color:#ff4500;">$true</span><span style="color:#000000;">  </span><span style="color:#a9a9a9;">,</span><span style="color:#000000;">valueFromPipeline</span><span style="color:#a9a9a9;">=</span><span style="color:#ff4500;">$true</span><span style="color:#000000;"> </span><span style="color:#000000;">)</span><span style="color:#a9a9a9;">]</span><span style="color:#ff4500;">$InputObject</span><span style="color:#a9a9a9;">,</span><span style="color:#000000;"> </span><br />
<span style="color:#000000;">             </span><span style="color:#a9a9a9;">[</span><span style="color:#add8e6;">Parameter</span><span style="color:#000000;">(</span><span style="color:#000000;">Mandatory</span><span style="color:#a9a9a9;">=</span><span style="color:#ff4500;">$true</span><span style="color:#000000;">)</span><span style="color:#a9a9a9;">]</span><span style="color:#ff4500;">$Property</span><span style="color:#000000;">)</span></p>
<p><span style="color:#000000;">    </span><span style="color:#00008b;">begin</span><span style="color:#000000;">   </span><span style="color:#000000;">{</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$i</span><span style="color:#a9a9a9;">=</span><span style="color:#000000;"> </span><span style="color:#000000;">@(</span><span style="color:#000000;">)</span><span style="color:#000000;">  </span><span style="color:#000000;">}</span><br />
<span style="color:#000000;">    </span><span style="color:#00008b;">process</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$i</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">+=</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$inputobject</span><span style="color:#000000;">  </span><span style="color:#000000;">}</span><br />
<span style="color:#000000;">    </span><span style="color:#00008b;">end</span><span style="color:#000000;">     </span><span style="color:#000000;">{</span><span style="color:#000000;"> </span><span style="color:#00008b;">if</span><span style="color:#000000;"> </span><span style="color:#000000;">(</span><span style="color:#ff4500;">$i</span><span style="color:#a9a9a9;">.</span><span style="color:#000000;">count</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">-eq</span><span style="color:#000000;"> </span><span style="color:#800080;">1</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><span style="color:#ff4500;">$i</span><span style="color:#a9a9a9;">[</span><span style="color:#800080;">0</span><span style="color:#a9a9a9;">]</span><span style="color:#000000;">}</span><span style="color:#000000;"> </span><span style="color:#00008b;">elseif</span><span style="color:#000000;"> </span><span style="color:#000000;">(</span><span style="color:#ff4500;">$i</span><span style="color:#a9a9a9;">.</span><span style="color:#000000;">count</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">-gt</span><span style="color:#000000;"> </span><span style="color:#800080;">1</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><br />
<span style="color:#000000;">                  </span><span style="color:#ff4500;">$Global:counter</span><span style="color:#a9a9a9;">=</span><span style="color:#800080;">-1</span><br />
<span style="color:#000000;">                  </span><span style="color:#ff4500;">$Property</span><span style="color:#a9a9a9;">=</span><span style="color:#000000;">@(</span><span style="color:#000000;">@{</span><span style="color:#000000;">Label</span><span style="color:#a9a9a9;">=</span><span style="color:#8b0000;">&#8220;ID&#8221;</span><span style="color:#000000;">;</span><span style="color:#000000;"> </span><span style="color:#000000;">Expression</span><span style="color:#a9a9a9;">=</span><span style="color:#000000;">{</span><span style="color:#000000;"> </span><span style="color:#000000;">(</span><span style="color:#ff4500;">$global:Counter</span><span style="color:#a9a9a9;">++</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#000000;">}</span><span style="color:#000000;">}</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">+</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$Property</span><br />
<span style="color:#000000;">                  </span><span style="color:#0000ff;">format-table</span><span style="color:#000000;"> </span><span style="color:#000080;">-inputObject</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$i</span><span style="color:#000000;"> </span><span style="color:#000080;">-autosize</span><span style="color:#000000;"> </span><span style="color:#000080;">-property</span><span style="color:#000000;"> </span><span style="color:#ff4500;">$Property</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">|</span><span style="color:#000000;"> </span><span style="color:#0000ff;">out-host</span><br />
<span style="color:#000000;">                 </span><span style="color:#ff4500;">$Response</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">=</span><span style="color:#000000;"> </span><span style="color:#0000ff;">Read-Host</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;Select NIC to unbind&#8221;</span><br />
<span style="color:#000000;">                  </span><span style="color:#00008b;">if</span><span style="color:#000000;"> </span><span style="color:#000000;">(</span><span style="color:#ff4500;">$response</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">-gt</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;&#8221;</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><span style="color:#000000;"> </span><br />
<span style="color:#000000;">                        </span><span style="color:#ff4500;">$I</span><span style="color:#a9a9a9;">[</span><span style="color:#ff4500;">$response</span><span style="color:#a9a9a9;">]</span><span style="color:#000000;"> </span><br />
<span style="color:#000000;">                  </span><span style="color:#000000;">}</span><br />
<span style="color:#000000;">              </span><span style="color:#000000;">}</span><br />
<span style="color:#000000;">            </span><span style="color:#000000;">}</span><br />
<span style="color:#000000;">}</span></p>
<p><span style="color:#00008b;">function</span><span style="color:#000000;"> </span><span style="color:#8a2be2;">Remove-HVExternalEthernetPort</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span></p>
<p><span style="color:#ff4500;">$ExternalEthernetPort</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">=</span><span style="color:#000000;"> </span><span style="color:#0000ff;">Get-WMIObject</span><span style="color:#000000;"> </span><span style="color:#000080;">-class</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;Msvm_ExternalEthernetPort&#8221;</span><span style="color:#000000;"> </span><span style="color:#000080;">-namespace</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;root\virtualization&#8221;</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">|</span><span style="color:#000000;"> </span><span style="color:#0000ff;">Select-List</span><span style="color:#000000;"> </span><span style="color:#000080;">-Property</span><span style="color:#000000;"> </span><span style="color:#8a2be2;">name</span></p>
<p><span style="color:#ff4500;">$HVSwitchObj</span><span style="color:#000000;"> </span><span style="color:#a9a9a9;">=</span><span style="color:#000000;"> </span><span style="color:#0000ff;">Get-WMIObject</span><span style="color:#000000;"> </span><span style="color:#000080;">-class</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;MSVM_VirtualSwitchManagementService&#8221;</span><span style="color:#000000;"> </span><span style="color:#000080;">-namespace</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;root\virtualization&#8221;</span></p>
<p><span style="color:#00008b;">if</span><span style="color:#000000;"> </span><span style="color:#000000;">(</span><span style="color:#ff4500;">$ExternalEthernetPort</span><span style="color:#000000;">)</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><br />
<span style="color:#006400;">$HVSwitchObj.UnbindExternalEthernetPort()</span><br />
<span style="color:#000000;">}</span><br />
<span style="color:#00008b;">else</span><span style="color:#000000;"> </span><span style="color:#000000;">{</span><br />
<span style="color:#00008b;">throw</span><span style="color:#000000;"> </span><span style="color:#8b0000;">&#8220;An error occured. Choose a valid ExternalEthernetPort from the provided list&#8221;</span><br />
<span style="color:#000000;">}</span></p>
<p><span style="color:#000000;">}</span></p>
<p><span style="font-size:xx-small;">Note: The Select-List function is a modified version of the Select-List function available in the PowerShell Management Library for Hyper-V available on CodePlex (see link below).</span></p>
<p>You can either paste the function into a PowerShell session or save it into ps1-file and <a href="http://technet.microsoft.com/en-us/library/ee176949.aspx#ECAA">dot source</a> it. When done you can invoke the function like this:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/08/image4.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" src="http://janegilring.files.wordpress.com/2011/08/image_thumb4.png?w=566&#038;h=148" alt="image" width="566" height="148" border="0" /></a></p>
<p>When you`ve entered the index number for the NIC you want to remove, a return value of 0 indicates the operation succeeded. Any other value indicates an error (look at the previous mentioned <a href="http://msdn.microsoft.com/en-us/library/cc136981(v=vs.85).aspx">MSDN-article</a> for more information).</p>
<p>&nbsp;</p>
<p><strong><span style="font-size:x-small;">More resources on managing Hyper-V using PowerShell</span></strong></p>
<p><a href="http://pshyperv.codeplex.com/">PowerShell Management Library for Hyper-V</a> – this is an excellent PowerShell module for managing Hyper-V available on CodePlex</p>
<p><a href="http://technet.microsoft.com/en-us/library/gg650469.aspx">System Center Virtual Machine Manager 2012: Scripting</a></p>
<p><a href="http://technet.microsoft.com/en-us/library/cc764259.aspx">System Center Virtual Machine Manager 2008 R2: Scripting</a></p>
<p><a href="http://blogs.msdn.com/b/taylorb/archive/2008/05/26/hyper-v-wmi-using-powershell-scripts-part-5-creating-virtual-switchs-networks.aspx">Hyper-V WMI Using PowerShell Scripts</a></p>
<p><a href="http://blogs.msdn.com/b/virtual_pc_guy/archive/2009/02/24/script-determining-virtual-switch-type-under-hyper-v.aspx">Script: Determining Virtual Switch Type Under Hyper-V</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/912/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/912/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/912/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=912&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2011/08/30/hyper-v-how-to-unbind-a-physical-nic-from-a-virtual-switch-using-wmi-and-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/08/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting starting with Cisco UCS PowerShell Toolkit</title>
		<link>http://blog.powershell.no/2011/07/23/getting-starting-with-cisco-ucs-powershell-toolkit/</link>
		<comments>http://blog.powershell.no/2011/07/23/getting-starting-with-cisco-ucs-powershell-toolkit/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 18:03:05 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows PowerShell]]></category>
		<category><![CDATA[Cisco UCS]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[XML API]]></category>

		<guid isPermaLink="false">https://janegilring.wordpress.com/2011/07/23/getting-starting-with-cisco-ucs-powershell-toolkit/</guid>
		<description><![CDATA[Cisco – widely known as a networking infrastructure vendor – entered the blade server market in 2009. Their offering is called Unified Computing System, described by Gartner as a fabric-enabled, enterprise-class platform with good integration of networking, virtualization, management tools and storage. On the 2011 Gartner Magic Quadrant for Blade Servers they`re defined as a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=891&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Cisco – widely known as a networking infrastructure vendor – entered the blade server market in 2009. Their offering is called Unified Computing System, described by Gartner as <em>a fabric-enabled, enterprise-class platform with good integration of networking, virtualization, management tools and storage</em>. On the 2011 Gartner <a href="http://www.gartner.com/technology/media-products/reprints/hp/vol3/article7/article7.html">Magic Quadrant for Blade Servers</a> they`re defined as a visionary vendor, and it will be interesting to see if they can challenge the 3 leaders Dell, IBM and HP.</p>
<p>The Cisco Unified Computing System is quite different from traditional blade systems, in that the server profiles (so called service profiles) is independent from the physical blade servers. An example to describe what this means is that a physical blade server might fail and be replaced, while the server profile keeps unique ID`s like MAC addresses, World Wide Names (WWN`s) and so on. If using boot from SAN rather than local disk drives, physical interaction is not required to get the system back online if a spare blade server is available.</p>
<p>&#160;</p>
<p><strong>The UCS core components</strong></p>
<ul>
<li>Blade Chassis – Blade server enclosure </li>
<li>Cisco UCS Manager – Embedded into the Fabric Interconnect. Provides management capabilities </li>
<li>Cisco UCS fabric interconnect – Provides networking (Ethernet/Fibre Channel) and management for connected blades and chassis` </li>
<li>Fabric Extenders – Provides connection between the interconnect fabric and the blade enclosures </li>
</ul>
<p>A photo showing the Cisco Unified Computing System architecture is available <a href="http://www.cisco.com/assets/cdc_content_elements/images/products/data_center/ucs_component_large_photo.html">here</a> (cisco.com). In regards of management, all aspects of Cisco UCS can be managed through an XML API. This makes it possible for 3rd parties to offer management solutions, and integration with other products. An example of a 3rd party product is the Cisco UCS Iphone/Ipad application for managing and monitoring the system. Links for more information on the management model and the XML API is available in the resources section in the bottom of this article.</p>
<p>&#160;</p>
<p><strong><font size="2">Cisco UCS PowerShell Toolkit</font></strong></p>
<p>Based on a customer request from an early adaptor, Cisco provided PowerShell support for managing their UCS product through the XMP API. With the Microsoft automation strategy in mind, this was an excellent choice. It will make integration into products like System Center Orchestrator (formerly Opalis) very easy, and the also make the product attractive for enterprises. The PowerShell administration tool is available as a module part of the Cisco UCS PowerShell Toolkit.</p>
<p>A great way to learn using the Cisco UCS PowerShell Toolkit is downloading the <a href="http://developer.cisco.com/web/unifiedcomputing/ucsemulatordownload">Cisco UCS Emulator</a>. This is a virtual machine image which can be imported into VMware Player or VirtualBox. When the VM is up and running you can access both the UCS Manager (http URL is shown when the VM has started) and the XML API. A great feature is that you can import the configuration from a production UCS to simulate administration changes in a lab environment.</p>
<p>Next, you can download the latest versions of both the Cisco UCS PowerShell Toolkit (aka UCSMPowerTool) and the PowerShell Toolkit User Guide from <a href="http://developer.cisco.com/web/unifiedcomputing/pshell-download">this</a> website.</p>
<p>The installer will by default put the files in %programfiles%\Cisco\UCSMPowerToolkit:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image3.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb3.png?w=404&#038;h=196" width="404" height="196" /></a></p>
<p>CiscoUCSPS.dll is the assembly which can be imported as a module in Windows PowerShell 2.0 and later. You can either double-click LaunchUCSPS.bat or invoke StartUCSPS.ps1 from an existing PowerShell session to get started. Alternatively you can use Import-Module from an existing PowerShell session like this:    <br />Import-Module “C:\Program Files (x86)\Cisco\UCSMPowerToolkit\CiscoUCSPS.dll”</p>
<p>I would suggest rather than installing to the Program Files folder (which requires administrative privileges), that Cisco generates a <a href="http://msdn.microsoft.com/en-us/library/dd878337(v=vs.85).aspx">module manifest</a> and install the module to the default PowerShell module directory (C:\Users\&lt;username&gt;\Documents\WindowsPowerShell\Modules).</p>
<p>When the module is imported we can use Get-Command with the –Module parameter to list all command inside the CiscoUCSPS module:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image4.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb4.png?w=530&#038;h=484" width="530" height="484" /></a></p>
<p>The current version of the module contains 149 cmdlets, so all commands are not shown in the above screenshot.</p>
<p>The first thing we need to do is connect to an instance of the UCS Manager. If using the Cisco UCS Emulator you can view the management&#160; IP address when the virtual machine has started:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image5.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb5.png?w=480&#038;h=236" width="480" height="236" /></a></p>
<p>We then use the Connect-UCSM cmdlet to connect to the UCS Manager:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image6.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb6.png?w=573&#038;h=355" width="573" height="355" /></a></p>
<p>The default credentials for the UCS Emulator is config/config.</p>
<p>Next we can start exploring cmdlets like Get-Blade and Get-Vlan. Note that by default the cmdlets outputs a lot of information for each object, so I`ve picked out a few properties to show using Format-Table:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image7.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb7.png?w=580&#038;h=284" width="580" height="284" /></a></p>
<p>Going further it`s easy to automate things like adding VLAN and assigning it to a vNIC template:</p>
<p><a href="http://janegilring.files.wordpress.com/2011/07/image8.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="image" border="0" alt="image" src="http://janegilring.files.wordpress.com/2011/07/image_thumb8.png?w=583&#038;h=465" width="583" height="465" /></a></p>
<p>&#160;</p>
<p>Although the PowerShell coverage isn`t 100% yet, it`s possible to administer all aspect of the UCS directly through the XML API from PowerShell using the Invoke-XmlCommand cmdlet.</p>
<p>&#160;</p>
<p><strong><font size="3">Resources</font></strong></p>
<p><a href="http://www.cisco.com/en/US/netsol/ns944/index.html">Cisco Unified Computing</a></p>
<p><a href="http://www.cisco.com/en/US/prod/collateral/ps10265/ps10276/white_paper_c11-555663_ps10280_Products_White_Paper.html">A Platform Built for Server Virtualization: Cisco Unified Computing System</a></p>
<p><a href="http://developer.cisco.com/web/unifiedcomputing/forums">Cisco Unified Computing Forums</a></p>
<p><a href="http://blogs.cisco.com/datacenter/automating-cisco-ucs-management-with-windows-powershell/">Automating Cisco UCS Management with Windows PowerShell</a></p>
<p><a href="http://powerscripting.wordpress.com/2011/07/18/episode-154-josh-heller-from-cisco-on-ucs-and-powershell/">PowerScripting Podcast &#8211; Josh Heller from Cisco on UCS and PowerShell</a></p>
<p><a href="http://developer.cisco.com/documents/2048839/2049143/Cisco+UCS+Manager+XML+API+Programmer's+Guide.pdf?redirect=http%3a%2f%2fdeveloper.cisco.com%2fweb%2funifiedcomputing%2fdocs%3fp_p_id%3ddoc_library_summary_portlet_WAR_doclibrarysummaryportlet_INSTANCE_DXka%26p_p_lifecycle%3d0%26p_p_state%3dnormal%26p_p_mode%3dview%26p_p_col_id%3dcolumn-1%26p_p_col_count%3d2">Cisco UCS Manager XML API Programmer’s Guide</a></p>
<p><a href="http://developer.cisco.com/documents/2048839/2049143/Cisco+UCS+Manager+API+Management+Information+Model+Guide.pdf">Cisco UCS Manager API Management Information Model</a></p>
<p><a href="http://developer.cisco.com/web/cdc/tech/unifiedcomputing">Cisco Developer Network: Unified Computing</a></p>
<p><a href="http://blogs.cisco.com/datacenter/managing_your_cisco_ucs_from_an_iphone_or_ipad/">Managing your Cisco UCS from an iPhone or iPad</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/891/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/891/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/891/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=891&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2011/07/23/getting-starting-with-cisco-ucs-powershell-toolkit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb3.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb4.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb6.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb7.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2011/07/image_thumb8.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>System Center Virtual Machine Manager 2008 and PowerShell</title>
		<link>http://blog.powershell.no/2008/12/18/system-center-virtual-machine-manager-2008-and-powershell/</link>
		<comments>http://blog.powershell.no/2008/12/18/system-center-virtual-machine-manager-2008-and-powershell/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 18:56:51 +0000</pubDate>
		<dc:creator>Jan Egil Ring</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://janegilring.wordpress.com/2008/12/18/system-center-virtual-machine-manager-2008-and-powershell/</guid>
		<description><![CDATA[I`ve been playing around with System Center VMM 2008 lately, and I really like &#8220;View Script&#8221;-button: Clicking on the button you get a text-file containing the script which is being run when you press &#8220;Finish&#8221;. (Almost the same functionality in Exchange 2007, the difference is that you must press Ctrl + C rather than a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=39&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I`ve been playing around with System Center VMM 2008 lately, and I really like &#8220;View Script&#8221;-button:</p>
<p><a href="http://janegilring.files.wordpress.com/2008/12/image.png"><img style="border-width:0;" height="208" alt="new_vm_demo" src="http://janegilring.files.wordpress.com/2008/12/image-thumb.png?w=244&#038;h=208" width="244" border="0"></a> </p>
<p>Clicking on the button you get a text-file containing the script which is being run when you press &#8220;Finish&#8221;. (Almost the same functionality in Exchange 2007, the difference is that you must press Ctrl + C rather than a button to copy the script/command being run in the Exchange Management Console).</p>
<p>Sample textfile-output:</p>
<p>
<div class="wlWriterSmartContent" id="scid:57F11A72-B0E5-49c7-9094-E3A15BD5B5E6:b8bd5919-0f49-429d-87fe-c80fa8ad5822" style="display:inline;float:none;margin:0;padding:0;">
<pre style="background-color:White;overflow:auto;">
<div><span style="color:#000000;"># </span><span style="color:#000000;">------------------------------------------------------------------------------</span><span style="color:#000000;">
# New Virtual Machine Script
# </span><span style="color:#000000;">------------------------------------------------------------------------------</span><span style="color:#000000;">
# Script generated on </span><span style="color:#800080;">18</span><span style="color:#000000;">. desember </span><span style="color:#800080;">2008</span><span style="color:#000000;"> </span><span style="color:#800080;">18</span><span style="color:#000000;">:</span><span style="color:#800080;">46</span><span style="color:#000000;">:</span><span style="color:#800080;">03</span><span style="color:#000000;"> by Virtual Machine Manager
#
# For additional help on cmdlet usage, type </span><span style="color:#0000FF;">get</span><span style="color:#000000;">-</span><span style="color:#000000;">help </span><span style="color:#000000;">&lt;</span><span style="color:#000000;">cmdlet name</span><span style="color:#000000;">&gt;</span><span style="color:#000000;">
# </span><span style="color:#000000;">------------------------------------------------------------------------------</span><span style="color:#000000;">

New</span><span style="color:#000000;">-</span><span style="color:#000000;">VirtualNetworkAdapter </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">-</span><span style="color:#000000;">JobGroup 6928344f</span><span style="color:#000000;">-</span><span style="color:#800080;">7732</span><span style="color:#000000;">-</span><span style="color:#000000;">4e1b</span><span style="color:#000000;">-</span><span style="color:#000000;">b852</span><span style="color:#000000;">-</span><span style="color:#000000;">15cf0288cd2f </span><span style="color:#000000;">-</span><span style="color:#000000;">PhysicalAddressType Dynamic </span><span style="color:#000000;">-</span><span style="color:#000000;">VLanEnabled $</span><span style="color:#0000FF;">false</span><span style="color:#000000;"> 

New</span><span style="color:#000000;">-</span><span style="color:#000000;">VirtualDVDDrive </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">-</span><span style="color:#000000;">JobGroup 6928344f</span><span style="color:#000000;">-</span><span style="color:#800080;">7732</span><span style="color:#000000;">-</span><span style="color:#000000;">4e1b</span><span style="color:#000000;">-</span><span style="color:#000000;">b852</span><span style="color:#000000;">-</span><span style="color:#000000;">15cf0288cd2f </span><span style="color:#000000;">-</span><span style="color:#000000;">Bus </span><span style="color:#800080;">1</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">LUN </span><span style="color:#800080;">0</span><span style="color:#000000;"> 

$CPUType </span><span style="color:#000000;">=</span><span style="color:#000000;"> Get</span><span style="color:#000000;">-</span><span style="color:#000000;">CPUType </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">|</span><span style="color:#000000;"> </span><span style="color:#0000FF;">where</span><span style="color:#000000;"> {$_.Name </span><span style="color:#000000;">-</span><span style="color:#000000;">eq </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">1.20 GHz Athlon MP</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">}

New</span><span style="color:#000000;">-</span><span style="color:#000000;">HardwareProfile </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">-</span><span style="color:#000000;">Owner </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">RBK\jer</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">CPUType $CPUType </span><span style="color:#000000;">-</span><span style="color:#000000;">Name </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Profiledb3743da-b115-4c6b-bab5-6cbf89fde1ad</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">Description </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Profile used to create a VM/Template</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">CPUCount </span><span style="color:#800080;">1</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">MemoryMB </span><span style="color:#800080;">512</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">RelativeWeight </span><span style="color:#800080;">100</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">HighlyAvailable $</span><span style="color:#0000FF;">false</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">NumLock $</span><span style="color:#0000FF;">false</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">BootOrder </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">CD</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">, </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">IdeHardDrive</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">, </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">PxeBoot</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">, </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Floppy</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">LimitCPUFunctionality $</span><span style="color:#0000FF;">false</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">JobGroup 6928344f</span><span style="color:#000000;">-</span><span style="color:#800080;">7732</span><span style="color:#000000;">-</span><span style="color:#000000;">4e1b</span><span style="color:#000000;">-</span><span style="color:#000000;">b852</span><span style="color:#000000;">-</span><span style="color:#000000;">15cf0288cd2f 

New</span><span style="color:#000000;">-</span><span style="color:#000000;">VirtualDiskDrive </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">-</span><span style="color:#000000;">IDE </span><span style="color:#000000;">-</span><span style="color:#000000;">Bus </span><span style="color:#800080;">0</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">LUN </span><span style="color:#800080;">0</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">JobGroup 6928344f</span><span style="color:#000000;">-</span><span style="color:#800080;">7732</span><span style="color:#000000;">-</span><span style="color:#000000;">4e1b</span><span style="color:#000000;">-</span><span style="color:#000000;">b852</span><span style="color:#000000;">-</span><span style="color:#000000;">15cf0288cd2f </span><span style="color:#000000;">-</span><span style="color:#000000;">Size </span><span style="color:#800080;">40960</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">Dynamic </span><span style="color:#000000;">-</span><span style="color:#000000;">Filename </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Demo-01_disk_1</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> 

$VMHost </span><span style="color:#000000;">=</span><span style="color:#000000;"> Get</span><span style="color:#000000;">-</span><span style="color:#000000;">VMHost </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">|</span><span style="color:#000000;"> </span><span style="color:#0000FF;">where</span><span style="color:#000000;"> {$_.Name </span><span style="color:#000000;">-</span><span style="color:#000000;">eq </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">HYPER-V-JR.rbk.ad</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">}
$HardwareProfile </span><span style="color:#000000;">=</span><span style="color:#000000;"> Get</span><span style="color:#000000;">-</span><span style="color:#000000;">HardwareProfile </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">|</span><span style="color:#000000;"> </span><span style="color:#0000FF;">where</span><span style="color:#000000;"> {$_.Name </span><span style="color:#000000;">-</span><span style="color:#000000;">eq </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Profiledb3743da-b115-4c6b-bab5-6cbf89fde1ad</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">}
$OperatingSystem </span><span style="color:#000000;">=</span><span style="color:#000000;"> Get</span><span style="color:#000000;">-</span><span style="color:#000000;">OperatingSystem </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">|</span><span style="color:#000000;"> </span><span style="color:#0000FF;">where</span><span style="color:#000000;"> {$_.Name </span><span style="color:#000000;">-</span><span style="color:#000000;">eq </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Windows Server 2008 Standard 32-Bit</span><span style="color:#800000;">&quot;</span><span style="color:#000000;">}

New</span><span style="color:#000000;">-</span><span style="color:#000000;">VM </span><span style="color:#000000;">-</span><span style="color:#000000;">VMMServer localhost </span><span style="color:#000000;">-</span><span style="color:#000000;">Name </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">Demo-01</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">Description </span><span style="color:#800000;">&quot;&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">Owner </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">RBK\jer</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">VMHost $VMHost </span><span style="color:#000000;">-</span><span style="color:#000000;">Path </span><span style="color:#800000;">&quot;</span><span style="color:#800000;">D:\Hyper-V</span><span style="color:#800000;">&quot;</span><span style="color:#000000;"> </span><span style="color:#000000;">-</span><span style="color:#000000;">HardwareProfile $HardwareProfile </span><span style="color:#000000;">-</span><span style="color:#000000;">JobGroup 6928344f</span><span style="color:#000000;">-</span><span style="color:#800080;">7732</span><span style="color:#000000;">-</span><span style="color:#000000;">4e1b</span><span style="color:#000000;">-</span><span style="color:#000000;">b852</span><span style="color:#000000;">-</span><span style="color:#000000;">15cf0288cd2f </span><span style="color:#000000;">-</span><span style="color:#000000;">RunAsynchronously </span><span style="color:#000000;">-</span><span style="color:#000000;">OperatingSystem $OperatingSystem </span><span style="color:#000000;">-</span><span style="color:#000000;">RunAsSystem </span><span style="color:#000000;">-</span><span style="color:#000000;">StartAction NeverAutoTurnOnVM </span><span style="color:#000000;">-</span><span style="color:#000000;">StopAction SaveVM
</span></div>
</pre>
<p><!-- Code inserted with Steve Dunn's Windows Live Writer Code Formatter Plugin.  http://dunnhq.com --></div>
</p>
<p>Now you can save it as a ps1-file and tweak as wanted. This makes it really easy to get started automating tasks in SCVMM.</p>
<p>Btw, <a href="http://www.microsoft.com/systemcenter/virtualmachinemanager/en/us/default.aspx">SC VMM 2008</a> is a really great product, making it possible to manage Virtual Server 2005, Hyper-V and VMWare ESX <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/janegilring.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/janegilring.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/janegilring.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blog.powershell.no&amp;blog=5892504&amp;post=39&amp;subd=janegilring&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://blog.powershell.no/2008/12/18/system-center-virtual-machine-manager-2008-and-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed08d635415486b87539a6e5a81982b7?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">janegilring</media:title>
		</media:content>

		<media:content url="http://janegilring.files.wordpress.com/2008/12/image-thumb.png" medium="image">
			<media:title type="html">new_vm_demo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
