<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: PowerCLI: Scripting ESXi</title>
	<atom:link href="http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/</link>
	<description>Virtually everything is poshable</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:00:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: kailab</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-7387</link>
		<dc:creator>kailab</dc:creator>
		<pubDate>Tue, 09 Aug 2011 15:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-7387</guid>
		<description>Thanks Allen, Really helpful..</description>
		<content:encoded><![CDATA[<p>Thanks Allen, Really helpful..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clint</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-5621</link>
		<dc:creator>Clint</dc:creator>
		<pubDate>Tue, 22 Mar 2011 13:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-5621</guid>
		<description>I stumbled across this way to enable and disable lockdown mode.

$hostview = get-vmhost $host &#124; get-view
$hostview.EnterLockdownMode()

or

$hostview.ExitLockdownMode()</description>
		<content:encoded><![CDATA[<p>I stumbled across this way to enable and disable lockdown mode.</p>
<p>$hostview = get-vmhost $host | get-view<br />
$hostview.EnterLockdownMode()</p>
<p>or</p>
<p>$hostview.ExitLockdownMode()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-2174</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Wed, 07 Apr 2010 04:16:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-2174</guid>
		<description>Just a note about setting the password

Powershell will interpret the $ in the password as a string reference.  You can see this if you type:

echo MyPa$$!

The solution is to create a variable like this:

$password = ‘MyPa$$!’
Set-VMHostAccount -UserAccount root -password $password

or

Set-VMHostAccount -UserAccount root -password ‘MyPa$$!’</description>
		<content:encoded><![CDATA[<p>Just a note about setting the password</p>
<p>Powershell will interpret the $ in the password as a string reference.  You can see this if you type:</p>
<p>echo MyPa$$!</p>
<p>The solution is to create a variable like this:</p>
<p>$password = ‘MyPa$$!’<br />
Set-VMHostAccount -UserAccount root -password $password</p>
<p>or</p>
<p>Set-VMHostAccount -UserAccount root -password ‘MyPa$$!’</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to backup esxi using powercli? &#171; Designing vSphere</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1965</link>
		<dc:creator>How to backup esxi using powercli? &#171; Designing vSphere</dc:creator>
		<pubDate>Tue, 16 Mar 2010 02:26:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1965</guid>
		<description>[...] &amp; http://www.virtu-al.net/ Possibly related posts: (automatically generated)vSphere Update Utility (VUU)NTPESXi8 Node ESXi [...]</description>
		<content:encoded><![CDATA[<p>[...] &amp; <a href="http://www.virtu-al.net/" rel="nofollow">http://www.virtu-al.net/</a> Possibly related posts: (automatically generated)vSphere Update Utility (VUU)NTPESXi8 Node ESXi [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ESXi &#8211; Automatic Backups &#171; DeinosCloud</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1853</link>
		<dc:creator>ESXi &#8211; Automatic Backups &#171; DeinosCloud</dc:creator>
		<pubDate>Wed, 17 Feb 2010 10:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1853</guid>
		<description>[...] VMware.com, Virtu-al.net Possibly related posts: (automatically generated)No TitleReduce the Need for Backup Tapes with Data [...]</description>
		<content:encoded><![CDATA[<p>[...] VMware.com, Virtu-al.net Possibly related posts: (automatically generated)No TitleReduce the Need for Backup Tapes with Data [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Virtu-Al</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1781</link>
		<dc:creator>Virtu-Al</dc:creator>
		<pubDate>Sat, 30 Jan 2010 11:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1781</guid>
		<description>Thanks Pablo</description>
		<content:encoded><![CDATA[<p>Thanks Pablo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pablo</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1777</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Fri, 29 Jan 2010 23:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1777</guid>
		<description>Great Job ! thanks again !</description>
		<content:encoded><![CDATA[<p>Great Job ! thanks again !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uberVU - social comments</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1729</link>
		<dc:creator>uberVU - social comments</dc:creator>
		<pubDate>Mon, 18 Jan 2010 23:00:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1729</guid>
		<description>&lt;strong&gt;Social comments and analytics for this post...&lt;/strong&gt;

This post was mentioned on Twitter by alanrenouf: New blog post: PowerCLI: Scripting ESXi http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/...</description>
		<content:encoded><![CDATA[<p><strong>Social comments and analytics for this post&#8230;</strong></p>
<p>This post was mentioned on Twitter by alanrenouf: New blog post: PowerCLI: Scripting ESXi <a href="http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/.." rel="nofollow">http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Renouf</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1728</link>
		<dc:creator>Alan Renouf</dc:creator>
		<pubDate>Mon, 18 Jan 2010 11:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1728</guid>
		<description>Thanks Cody, If Im missing anything please let me know.</description>
		<content:encoded><![CDATA[<p>Thanks Cody, If Im missing anything please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cody</title>
		<link>http://www.virtu-al.net/2010/01/15/powercli-scripting-esxi/#comment-1727</link>
		<dc:creator>Cody</dc:creator>
		<pubDate>Mon, 18 Jan 2010 11:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=1341#comment-1727</guid>
		<description>Good post. Was fighting some of this myself, it&#039;s great to have it all in one spot.</description>
		<content:encoded><![CDATA[<p>Good post. Was fighting some of this myself, it&#8217;s great to have it all in one spot.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

