<?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: Running a PowerCLI Scheduled task</title>
	<atom:link href="http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/</link>
	<description>Virtually everything is poshable</description>
	<lastBuildDate>Sat, 11 Feb 2012 00:31:08 +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: vCheck 6.0 released &#124; &#124; Virtu-Al.NetVirtu-Al.Net</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-13751</link>
		<dc:creator>vCheck 6.0 released &#124; &#124; Virtu-Al.NetVirtu-Al.Net</dc:creator>
		<pubDate>Wed, 08 Feb 2012 20:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-13751</guid>
		<description>[...] is a vCenter checking script, the script is designed to run as a scheduled task before you get into the office to present you with key information via an email directly to your [...]</description>
		<content:encoded><![CDATA[<p>[...] is a vCenter checking script, the script is designed to run as a scheduled task before you get into the office to present you with key information via an email directly to your [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-13583</link>
		<dc:creator>Alan</dc:creator>
		<pubDate>Fri, 03 Feb 2012 15:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-13583</guid>
		<description>The view snapin is called VMware.View.Broker so i would add something like this to the start of your script:

if (!(get-pssnapin -name VMware.View.Broker -erroraction silentlycontinue)) {
    add-pssnapin VMware.View.Broker
}</description>
		<content:encoded><![CDATA[<p>The view snapin is called VMware.View.Broker so i would add something like this to the start of your script:</p>
<p>if (!(get-pssnapin -name VMware.View.Broker -erroraction silentlycontinue)) {<br />
    add-pssnapin VMware.View.Broker<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-13580</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 03 Feb 2012 13:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-13580</guid>
		<description>Hi, 
I was wondering how I would run a VIEW PowerCLI script as a scheduled task?
I do not have the VMware PowerCLI installed on my connection server, just the View PowerCLI, so   &#039;VMware.VimAutomation.Core&#039; is not available. Any ideas?

Cheers,
Steve</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I was wondering how I would run a VIEW PowerCLI script as a scheduled task?<br />
I do not have the VMware PowerCLI installed on my connection server, just the View PowerCLI, so   &#8216;VMware.VimAutomation.Core&#8217; is not available. Any ideas?</p>
<p>Cheers,<br />
Steve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vSoluationArchitect</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-13448</link>
		<dc:creator>vSoluationArchitect</dc:creator>
		<pubDate>Tue, 31 Jan 2012 04:04:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-13448</guid>
		<description>vCheck worked right away. 

The surprise was it find &#039;exceptions&#039; and reports on them.  I used it recently as we built a lab prior to a mgiration to later version of vSphere.  It was helpful to monitor both production and lab with script (aimed at the different vCenters).

It was easy to adjust limits (such as number of VMs per LUN up from 5 (default), etc).

Nice job.

Larry T.</description>
		<content:encoded><![CDATA[<p>vCheck worked right away. </p>
<p>The surprise was it find &#8216;exceptions&#8217; and reports on them.  I used it recently as we built a lab prior to a mgiration to later version of vSphere.  It was helpful to monitor both production and lab with script (aimed at the different vCenters).</p>
<p>It was easy to adjust limits (such as number of VMs per LUN up from 5 (default), etc).</p>
<p>Nice job.</p>
<p>Larry T.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nigel Snow</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-11270</link>
		<dc:creator>Nigel Snow</dc:creator>
		<pubDate>Fri, 25 Nov 2011 01:26:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-11270</guid>
		<description>Trouble running as scheduled task resolved.

I have been playing with this exceptionally helpful script for a few days as I was having trouble triggering it via a scheduled task in Windows 2008R2 and noticed others also had problems.

I needed to change the line in the script that set the appdata environment variable from &quot;C:\Documents and Settings\&quot; + $USER + &quot;\Application Data&quot; to &quot;C:\Users\&quot; + $USER + &quot;\AppData\Roaming&quot;, I also hardcoded the cred file path to $CredFile = &quot;C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\mycred.crd&quot; once created and tested.

The correct syntax is throughout the posts above.
Cheers</description>
		<content:encoded><![CDATA[<p>Trouble running as scheduled task resolved.</p>
<p>I have been playing with this exceptionally helpful script for a few days as I was having trouble triggering it via a scheduled task in Windows 2008R2 and noticed others also had problems.</p>
<p>I needed to change the line in the script that set the appdata environment variable from &#8220;C:\Documents and Settings\&#8221; + $USER + &#8220;\Application Data&#8221; to &#8220;C:\Users\&#8221; + $USER + &#8220;\AppData\Roaming&#8221;, I also hardcoded the cred file path to $CredFile = &#8220;C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\mycred.crd&#8221; once created and tested.</p>
<p>The correct syntax is throughout the posts above.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dean</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-7734</link>
		<dc:creator>Dean</dc:creator>
		<pubDate>Wed, 14 Sep 2011 18:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-7734</guid>
		<description>Hello,
Awesome vCheck script!  Saves me so much time it is amazing.  I do have one issue that maybe you have seen.  When the html comes out to IE it looks perfect but when it sends to my email (outlook 2010) the secondary titles and descriptions and any background colors are lost.  Is there anything I can do to clean up the look of the email output to match the IE output?

Thanks again for an awesome script.

Dean</description>
		<content:encoded><![CDATA[<p>Hello,<br />
Awesome vCheck script!  Saves me so much time it is amazing.  I do have one issue that maybe you have seen.  When the html comes out to IE it looks perfect but when it sends to my email (outlook 2010) the secondary titles and descriptions and any background colors are lost.  Is there anything I can do to clean up the look of the email output to match the IE output?</p>
<p>Thanks again for an awesome script.</p>
<p>Dean</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-7541</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Wed, 24 Aug 2011 23:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-7541</guid>
		<description>I read all the comments and could not get this to execute on my Win7 x64 PC.  I downloaded System Scheduler free, put the commands into a .bat file and it executed with no issue.</description>
		<content:encoded><![CDATA[<p>I read all the comments and could not get this to execute on my Win7 x64 PC.  I downloaded System Scheduler free, put the commands into a .bat file and it executed with no issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-7494</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 19 Aug 2011 18:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-7494</guid>
		<description>Note on a 64bit server the path to vim.psc1 is different it should be &quot;C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\vim.psc1&quot;</description>
		<content:encoded><![CDATA[<p>Note on a 64bit server the path to vim.psc1 is different it should be &#8220;C:\Program Files (x86)\VMware\Infrastructure\vSphere PowerCLI\vim.psc1&#8243;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guido</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-6921</link>
		<dc:creator>Guido</dc:creator>
		<pubDate>Wed, 29 Jun 2011 12:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-6921</guid>
		<description>this is all is says.
[vSphere PowerCLI] C:\&gt; cd scripts
[vSphere PowerCLI] C:\scripts&gt; cd test
[vSphere PowerCLI] C:\scripts\test&gt; .\vcheck5.ps1
2:41:06 PM Connecting to VI Server
[vSphere PowerCLI] C:\scripts\test&gt;</description>
		<content:encoded><![CDATA[<p>this is all is says.<br />
[vSphere PowerCLI] C:\&gt; cd scripts<br />
[vSphere PowerCLI] C:\scripts&gt; cd test<br />
[vSphere PowerCLI] C:\scripts\test&gt; .\vcheck5.ps1<br />
2:41:06 PM Connecting to VI Server<br />
[vSphere PowerCLI] C:\scripts\test&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerard Delgado</title>
		<link>http://www.virtu-al.net/2009/07/10/running-a-powercli-scheduled-task/#comment-6920</link>
		<dc:creator>Gerard Delgado</dc:creator>
		<pubDate>Wed, 29 Jun 2011 11:54:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.virtu-al.net/?p=756#comment-6920</guid>
		<description>Try to run the task from a PowerCLI prompt and see what you get. Make sure the account you specified when creating the XML encrypted file has rights to log onto VCenter.</description>
		<content:encoded><![CDATA[<p>Try to run the task from a PowerCLI prompt and see what you get. Make sure the account you specified when creating the XML encrypted file has rights to log onto VCenter.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

