<?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/"
	>

<channel>
	<title>Jonathan Medd&#039;s Blog &#187; powercli</title>
	<atom:link href="http://www.jonathanmedd.net/category/powercli/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jonathanmedd.net</link>
	<description>Scripting. Powershell, VMware, Windows, Active Directory &#38; Exchange. All that kind of stuff.....</description>
	<lastBuildDate>Wed, 21 Jul 2010 12:41:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ESXi 4.0 Slow Boot Times When Hosting Passive MSCS Nodes With RDM LUNs</title>
		<link>http://www.jonathanmedd.net/2010/06/esxi-4-0-slow-boot-times-when-hosting-passive-mscs-nodes-with-rdm-luns.html</link>
		<comments>http://www.jonathanmedd.net/2010/06/esxi-4-0-slow-boot-times-when-hosting-passive-mscs-nodes-with-rdm-luns.html#comments</comments>
		<pubDate>Thu, 24 Jun 2010 13:27:40 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[esxi]]></category>
		<category><![CDATA[powercli]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=1268</guid>
		<description><![CDATA[During the initial stages of an upgrade of a number of VMware hosts from ESX 3.5 U5 to ESXi 4.0 U2 the boot times rose from the normal few mins (most of which is Dell Hardware checks) to around 12 mins.
In particular it was appearing to hang for 5 mins, whilst on the screen the [...]]]></description>
			<content:encoded><![CDATA[<p>During the initial stages of an upgrade of a number of VMware hosts from ESX 3.5 U5 to ESXi 4.0 U2 the boot times rose from the normal few mins (most of which is Dell Hardware checks) to around 12 mins.</p>
<p>In particular it was appearing to hang for 5 mins, whilst on the screen the below was displayed:</p>
<p><strong>Loading module multiextent</strong></p>
<p>This would only happen after the install was completed and the host connected back to the fibre channel SAN, otherwise boot times were normal. It was also fine on ESX 3.5 U5 when connected to the SAN.</p>
<p>Some research led me to the below blog post which describes that this can occur when the hosts are part of a cluster which contain Passive MSCS Nodes with RDM LUNs.</p>
<p><a href="http://www.vstable.com/tag/slow/" target="_blank">http://www.vstable.com/tag/slow/</a></p>
<p>I made the recommendation to modify the <strong>Scsi.UWConflictRetries</strong> Advanced Setting to the minimum value of 80 and the boot time dropped to around 5 mins, slighty longer than before, but much better.</p>
<p><a rel="attachment wp-att-1269" href="http://www.jonathanmedd.net/2010/06/esxi-4-0-slow-boot-times-when-hosting-passive-mscs-nodes-with-rdm-luns.html/scsiconflictretries"><img class="aligncenter size-full wp-image-1269" title="ScsiConflictRetries" src="http://www.jonathanmedd.net/wp-content/uploads/2010/06/ScsiConflictRetries.png" alt="ScsiConflictRetries" width="540" height="228" /></a></p>
<p>Of course you could also make this change in PowerCLI using the below:</p>
<pre class="brush: powershell;">

Get-VMHost test01 | Set-VMHostAdvancedConfiguration -Name  Scsi.UWConflictRetries -Value 80
</pre>
<p>Watch out because the name of the <a href="http://communities.vmware.com/thread/273722?tstart=0" target="_blank">Advanced Setting appears to be case sensitive</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2010/06/esxi-4-0-slow-boot-times-when-hosting-passive-mscs-nodes-with-rdm-luns.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring Extended Properties in PowerCLI</title>
		<link>http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html</link>
		<comments>http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html#comments</comments>
		<pubDate>Fri, 16 Apr 2010 13:42:03 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=1139</guid>
		<description><![CDATA[I was asked recently via Twitter how to find the CpuFeatureMask property of a VM using PowerCLI. When running a basic


Get-VM Test01

the below properties are outputted to the console:

It is possible to view more properties and values by runnning:


Get-VM Test01 &#124; Format-List *


Unfortunately this still does not reveal the CpuFeatureMask property.  However, if we pipe [...]]]></description>
			<content:encoded><![CDATA[<p>I was asked recently via Twitter how to find the <strong>CpuFeatureMask</strong> property of a VM using PowerCLI. When running a basic</p>
<pre class="brush: powershell;">

Get-VM Test01
</pre>
<p>the below properties are outputted to the console:</p>
<p><a rel="attachment wp-att-1144" href="http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/get-vm1-2"><img class="aligncenter size-full wp-image-1144" title="Get-VM1" src="http://www.jonathanmedd.net/wp-content/uploads/2010/04/Get-VM11.png" alt="Get-VM1" width="445" height="121" /></a></p>
<p>It is possible to view more properties and values by runnning:</p>
<pre class="brush: powershell;">

Get-VM Test01 | Format-List *
</pre>
<p><a rel="attachment wp-att-1146" href="http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/get-vm2-3"><img class="aligncenter size-full wp-image-1146" title="Get-VM2" src="http://www.jonathanmedd.net/wp-content/uploads/2010/04/Get-VM22.png" alt="Get-VM2" width="631" height="297" /></a></p>
<p>Unfortunately this still does not reveal the <strong>CpuFeatureMask </strong>property.  However, if we pipe the <strong>Get-VM</strong> command through to <strong>Get-View</strong> we will get back a .NET view object for the VM &#8211; by saving this into a variable we can then drill down through the various levels and look for the property we need.</p>
<pre class="brush: powershell;">

$vm = Get-VM | Get-View
$vm
</pre>
<p>Below is the top level of information which is returned:</p>
<p><a rel="attachment wp-att-1150" href="http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/get-vm3-2"><img class="aligncenter size-full wp-image-1150" title="Get-VM3" src="http://www.jonathanmedd.net/wp-content/uploads/2010/04/Get-VM31.png" alt="Get-VM3" width="556" height="313" /></a></p>
<p>This may look initially like a bewildering amount of info, however if you look at the first few entries you could treat them like categories of information. Since <strong>CpuFeatureMask </strong>is a configuration property it would seem like a good guess to try looking in the Config category:</p>
<p><a rel="attachment wp-att-1151" href="http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/get-vm4"><img class="aligncenter size-full wp-image-1151" title="Get-VM4" src="http://www.jonathanmedd.net/wp-content/uploads/2010/04/Get-VM4.png" alt="Get-VM4" width="541" height="113" /></a></p>
<p>You can essentially browse this category by entering the following</p>
<pre class="brush: powershell;">

$vm.config
</pre>
<p>and looking down the list of properties returned you will see <strong>CpuFeatureMask</strong></p>
<p><a rel="attachment wp-att-1154" href="http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/get-vm5"><img class="aligncenter size-full wp-image-1154" title="Get-VM5" src="http://www.jonathanmedd.net/wp-content/uploads/2010/04/Get-VM5.png" alt="Get-VM5" width="452" height="96" /></a></p>
<p>On this particular VM <strong>CpuFeatureMask</strong> is not set, but you get the idea. To retrieve this property for all of your VMs is a simple one liner. With <strong>Select-Object</strong> we can pick one of the standard properties <strong>Name</strong> by simply specifiying it; we can use another technique to create our own property with a label and expression for the <strong>CpuFeatureMask.</strong></p>
<pre class="brush: powershell;">

Get-VM | Get-View | Select-Object Name,@{Name=&quot;CpuFeatureMask&quot;;Expression={$_.config.CpuFeatureMask}}
</pre>
<p>You could apply a similar technique to other cmdlets like <strong>Get-Host</strong> or <strong>Get-Cluster</strong> to retrieve non-standard properties.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2010/04/exploring-extended-object-properties-in-powercli.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reporting on VMware Update Manager Baselines with PowerCLI</title>
		<link>http://www.jonathanmedd.net/2010/03/reporting-on-vmware-update-manager-baselines-with-powercli.html</link>
		<comments>http://www.jonathanmedd.net/2010/03/reporting-on-vmware-update-manager-baselines-with-powercli.html#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:21:28 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=942</guid>
		<description><![CDATA[I&#8217;ve mentioned on this blog before that I&#8217;ve been using VMware Update Manager a lot recently &#8211; and wrote about some of my experiences here. Today I was really pleased to see that Carter Shanklin&#8217;s team released some cmdlets for PowerCLI to cover Update Manager which had only previously been available back as a beta [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve mentioned on this blog before that I&#8217;ve been using VMware Update Manager a lot recently &#8211; and wrote about some of my experiences <a href="http://www.simple-talk.com/sysadmin/virtualization/using-vmware-vcenter-update-manager-to-keep-your-vsphere-hosts-up-to-date-with-patching/" target="_blank">here</a>. Today I was really pleased to see that <a href="http://twitter.com/powercli" target="_blank">Carter Shanklin&#8217;s</a> team <a href="http://blogs.vmware.com/vipowershell/2010/03/now-available-powercli-cmdlets-for-vcenter-update-manager.html" target="_blank">released some cmdlets</a> for PowerCLI to cover Update Manager which had only previously been available back as a beta in the VI Toolkit days.</p>
<p>They arrived just in time because I am currently preparing for a round of ESX patching and I needed to provide a report of hotfixes I was intending to deploy for a particular version of ESX. In the Update Manager GUI I had already created my baseline and scanned it against a host to produce a compliance report of hotfixes we would need to deploy this time.</p>
<p>You can see below that it produces a nice report for me, but I needed to export that information to a format whereby I can give that information to someone else.</p>
<p><a rel="attachment wp-att-949" href="http://www.jonathanmedd.net/2010/03/reporting-on-vmware-update-manager-baselines-with-powercli.html/updatemanager1-2"><img class="aligncenter size-full wp-image-949" title="UpdateManager1" src="http://www.jonathanmedd.net/wp-content/uploads/2010/03/UpdateManager11.PNG" alt="UpdateManager1" width="568" height="273" /></a></p>
<p>One of the new cmdlets is <strong>Get-Baseline</strong>. I pointed this at my test baseline and with the code below was quickly able to get the information I needed out into a CSV file. I knew from the above report that I just needed to select any patches since 29/12/2009. One of the properties of the patches returned by Get-Baseline is the date it was published so first of all I set a date for which I could query after and stored it in the $BeginDate variable, I then queried the baseline using that date as a starting point.</p>
<pre class="brush: powershell;">

$BeginDate = (Get-Date).adddays(-65)
Get-Baseline Test | Select-Object -ExpandProperty currentpatches | Where-Object {$_.'releasedate' -gt $BeginDate} | Select-Object Name,IDByVendor,Description,@{n='Product';e={$_.product | Select-Object -expandproperty Version}},ReleaseDate | Export-Csv patches.csv -NoTypeInformation
</pre>
<p>Which produces an output like this:</p>
<p><a rel="attachment wp-att-948" href="http://www.jonathanmedd.net/2010/03/reporting-on-vmware-update-manager-baselines-with-powercli.html/updatemanager2-3"><img class="aligncenter size-full wp-image-948" title="UpdateManager2" src="http://www.jonathanmedd.net/wp-content/uploads/2010/03/UpdateManager22.PNG" alt="UpdateManager2" width="600" height="194" /></a></p>
<p>You&#8217;ll notice that I make use of the <strong>ExpandProperty</strong> parameter for <a href="http://technet.microsoft.com/en-us/library/dd315291.aspx" target="_blank">Select-Object</a> which makes it nice and easy to get to properties which are returned in an array, otherwise although they look fine in the console, when you export them to CSV you will not get what you hope for.</p>
<p>It&#8217;s days like today when I&#8217;m especially glad I started using PowerShell and very thankful that the vendors of technologies I&#8217;m using make this stuff so simple by providing cmdlets for managing their products.</p>
<p><strong>Update:</strong></p>
<p>Initially I tried to use the <strong>Get-Compliance</strong> cmdlet to find these patches rather than by date, however it only seemed to return a status of <strong>Compliant</strong> or <strong>Not Compliant</strong>. Thankfully following a <a href="http://communities.vmware.com/thread/258964?tstart=0" target="_blank">post on the communities</a> it has been pointed out that <strong>Get-Compliance</strong> has a <strong>Detailed </strong>parameter which returns a lot more information. Consequently there is no need to mess around with dates, instead you can query for <strong>NotCompliantPatches</strong>. <img src='http://www.jonathanmedd.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<pre class="brush: powershell;">

$ComplianceStatus = Get-Compliance -Entity 'Server1' -Detailed
$ComplianceStatus.NotCompliantPatches | Select-Object Name,IDByVendor,Description,@{n='Product';e={$_.product | Select-Object -expandproperty Version}},ReleaseDate | Export-Csv patches.csv -NoTypeInformation
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2010/03/reporting-on-vmware-update-manager-baselines-with-powercli.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Bug in Cluster mem.usage.average Statistic in vSphere 4.0 U1</title>
		<link>http://www.jonathanmedd.net/2010/02/bug-in-cluster-mem-usage-average-statistic-in-vsphere-4-0-u1.html</link>
		<comments>http://www.jonathanmedd.net/2010/02/bug-in-cluster-mem-usage-average-statistic-in-vsphere-4-0-u1.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:36:25 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=890</guid>
		<description><![CDATA[A while back I posted a script on a basic capacity report I run each month to get an overview of CPU and Memory usage in our various clusters. Since upgrading to vSphere 4.0 U1 I noticed some strange behavior in the results for memory, i.e. they came back at pretty close to 0% (typically [...]]]></description>
			<content:encoded><![CDATA[<p>A while back I <a href="http://www.jonathanmedd.net/2009/09/average-cpu-and-memory-use-per-host-per-cluster.html" target="_blank">posted a script on a basic capacity report</a> I run each month to get an overview of CPU and Memory usage in our various clusters. Since upgrading to vSphere 4.0 U1 I noticed some strange behavior in the results for memory, i.e. they came back at pretty close to 0% (typically between 0.05 and 0.06%) for the average memory usage in a cluster which typically were quite heavily used. On investigating further this also appeared the same in the GUI.</p>
<p>Using Get-Stat, mem.usage.average comes back at 0% where it should be a significant value:</p>
<p><a rel="attachment wp-att-898" href="http://www.jonathanmedd.net/2010/02/bug-in-cluster-mem-usage-average-statistic-in-vsphere-4-0-u1.html/memusageaverage1-2"><img class="aligncenter size-full wp-image-898" title="memusageaverage1" src="http://www.jonathanmedd.net/wp-content/uploads/2010/02/memusageaverage11.PNG" alt="memusageaverage1" width="568" height="144" /></a></p>
<p>The same in the GUI, the other cluster memory stats have significant values, but Memory Usage Average flatlines along the bottom of the graph:</p>
<p><a rel="attachment wp-att-895" href="http://www.jonathanmedd.net/2010/02/bug-in-cluster-mem-usage-average-statistic-in-vsphere-4-0-u1.html/memusageaverage2-2"><img class="aligncenter size-full wp-image-895" title="memusageaverage2" src="http://www.jonathanmedd.net/wp-content/uploads/2010/02/memusageaverage21.PNG" alt="memusageaverage2" width="630" height="400" /></a></p>
<p>This stat shows normal behaviour against host machines. I reported it to VMware who confirmed it to be a bug in 4.0 U1.</p>
<p>Thought I would share in case anyone else spends some time scratching their head and checking maths in scripts like I did. I&#8217;ll post back when there is a fix.</p>
<p><strong>Update 19/05/2010:</strong></p>
<p>Just got a follow up email from VMware Support that this bug will be fixed in VC 4.0 U3 &#8211; no release date for that yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2010/02/bug-in-cluster-mem-usage-average-statistic-in-vsphere-4-0-u1.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Slide Deck from Nov 2009 London VMUG</title>
		<link>http://www.jonathanmedd.net/2009/11/slide-deck-from-london-vmug.html</link>
		<comments>http://www.jonathanmedd.net/2009/11/slide-deck-from-london-vmug.html#comments</comments>
		<pubDate>Wed, 25 Nov 2009 12:25:20 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[user group]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=303</guid>
		<description><![CDATA[After my PowerCLI session at yesterday&#8217;s London VMUG a few people asked me for the content. I believe the content from all sessions will soon be posted to http://www.box.net/londonug, but in the meantime you can get my slides from the below link.
PowerCLI Workshop London VMUG.pptx
Thanks to all who chatted to me afterwards, its always nice [...]]]></description>
			<content:encoded><![CDATA[<p>After my PowerCLI session at yesterday&#8217;s London VMUG a few people asked me for the content. I believe the content from all sessions will soon be posted to <a href="http://www.box.net/londonug" target="_blank">http://www.box.net/londonug</a>, but in the meantime you can get my slides from the below link.</p>
<p><a href="http://www.jonathanmedd.net/wp-content/uploads/2009/11/PowerCLI-Workshop-London-VMUG.pptx" target="_blank">PowerCLI Workshop London VMUG.pptx</a></p>
<p>Thanks to all who chatted to me afterwards, its always nice to know that someone got something out of a session you put on.</p>
<div style="width:425px;text-align:left" id="__ss_2581625"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" href="http://www.slideshare.net/jonathanmedd/power-cli-workshop-london-vmug" title="Power Cli Workshop London Vmug">Power Cli Workshop London Vmug</a><object style="margin:0px" width="425" height="355"><param name="movie" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=powercli-workshop-london-vmug-091125065356-phpapp02&#038;rel=0&#038;stripped_title=power-cli-workshop-london-vmug" /><param name="allowFullScreen" value="true"/><param name="allowScriptAccess" value="always"/><embed src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=powercli-workshop-london-vmug-091125065356-phpapp02&#038;rel=0&#038;stripped_title=power-cli-workshop-london-vmug" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="355"></embed></object>
<div style="font-size:11px;font-family:tahoma,arial;height:26px;padding-top:2px;">View more <a style="text-decoration:underline;" href="http://www.slideshare.net/">presentations</a> from <a style="text-decoration:underline;" href="http://www.slideshare.net/jonathanmedd">jonathanmedd</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2009/11/slide-deck-from-london-vmug.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vSphere 4.0 Quick Start Guide &#8211; Now Available From Amazon</title>
		<link>http://www.jonathanmedd.net/2009/11/vsphere-4-0-quick-start-guide-now-available-from-amazon.html</link>
		<comments>http://www.jonathanmedd.net/2009/11/vsphere-4-0-quick-start-guide-now-available-from-amazon.html#comments</comments>
		<pubDate>Mon, 23 Nov 2009 12:30:15 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=295</guid>
		<description><![CDATA[I recieved a preview copy of the vSphere 4.0 Quick Start Guide a few weeks back from my good friend and PowerCLI expert Alan Renouf . It is a great read and because of its size is really handy fo carrying around and referring to without needing to lug a 700 page book around with [...]]]></description>
			<content:encoded><![CDATA[<p>I recieved a preview copy of the vSphere 4.0 Quick Start Guide a few weeks back from my good friend and PowerCLI expert <a href="http://www.virtu-al.net/" target="_blank">Alan Renouf</a> . It is a great read and because of its size is really handy fo carrying around and referring to without needing to lug a 700 page book around with you. (Having said that I do currently have <a href="http://www.amazon.co.uk/Mastering-VMware-VSphere-Scott-Lowe/dp/0470481382" target="_blank">Scott Lowe&#8217;s Mastering vSphere</a> in my bag at the moment!)</p>
<p>Alan is a contributor to the book and has provided examples of PowerCLI throughout to accompany various sections.</p>
<p>The final release of the book is now available from <a href="http://www.amazon.com/vSphere-Quick-Start-Guide-Virtualization/dp/1439263450/ref=sr_1_18?ie=UTF8&amp;s=books&amp;qid=1258967735&amp;sr=8-18" target="_blank">Amazon.com</a>.</p>
<p><a rel="attachment wp-att-298" href="http://www.jonathanmedd.net/2009/11/vsphere-4-0-quick-start-guide-now-available-from-amazon.html/vspherequickstartguid"><img class="aligncenter size-full wp-image-298" title="vSphereQuickStartGuid" src="http://www.jonathanmedd.net/wp-content/uploads/2009/11/vSphereQuickStartGuid.png" alt="vSphereQuickStartGuid" width="307" height="508" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2009/11/vsphere-4-0-quick-start-guide-now-available-from-amazon.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PowerCLI workshop at London VMUG 24th November</title>
		<link>http://www.jonathanmedd.net/2009/11/powercli-workshop-at-london-vmug-24th-november.html</link>
		<comments>http://www.jonathanmedd.net/2009/11/powercli-workshop-at-london-vmug-24th-november.html#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:44:33 +0000</pubDate>
		<dc:creator>Jonathan Medd</dc:creator>
				<category><![CDATA[powercli]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.jonathanmedd.net/?p=221</guid>
		<description><![CDATA[I have been lucky enough to be invited to run a PowerCLI  pre-show workshop before the main event of the next London VMUG on 24th November. A couple of VMUG&#8217;s back Alan Renouf ran a similar session on how to get started with PowerCLI. I thought this time I would move things one step on [...]]]></description>
			<content:encoded><![CDATA[<p>I have been lucky enough to be invited to run a PowerCLI  pre-show workshop before the main event of the next London VMUG on 24th November. A couple of VMUG&#8217;s back <a href="http://www.virtu-al.net/" target="_blank">Alan Renouf</a> ran a similar session on how to get started with PowerCLI. I thought this time I would move things one step on so the kind of topics I am likely to cover are reporting scripts and how you can make practical use of them, oneliners to get you great information and take a look at the VESI.</p>
<p>I will be giving away two e-book copies of Hal Rottenberg&#8217;s <a href="http://www.sapienpress.com/vmware.asp" target="_blank">Managing VMware Infrastructure with Windows PowerShell TFM </a> which he has kindly donated. I&#8217;m most likely to give these away to those who contribute the best during the workshop so there is an extra incentive to make it interactive.</p>
<p><a rel="attachment wp-att-222" href="http://www.jonathanmedd.net/2009/11/powercli-workshop-at-london-vmug-24th-november.html/managing-vmware-infrastructure-with-windows-powershell-cover_100res"><img class="aligncenter size-full wp-image-222" title="Managing VMware Infrastructure with Windows PowerShell cover_100res" src="http://www.jonathanmedd.net/wp-content/uploads/2009/11/Managing-VMware-Infrastructure-with-Windows-PowerShell-cover_100res.jpg" alt="Managing VMware Infrastructure with Windows PowerShell cover_100res" width="133" height="190" /></a></p>
<p>Details to sign up can be found <a href="http://communities.vmware.com/thread/241557;jsessionid=B7ABE3C62F360161EA3D3CAD5338B05A?tstart=0" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jonathanmedd.net/2009/11/powercli-workshop-at-london-vmug-24th-november.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
