<?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>vPlumbr</title>
	<atom:link href="http://virtualplumbr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://virtualplumbr.wordpress.com</link>
	<description>scribbles...</description>
	<lastBuildDate>Tue, 20 Dec 2011 17:23:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='virtualplumbr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>vPlumbr</title>
		<link>http://virtualplumbr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://virtualplumbr.wordpress.com/osd.xml" title="vPlumbr" />
	<atom:link rel='hub' href='http://virtualplumbr.wordpress.com/?pushpress=hub'/>
		<item>
		<title>vb script to check for specific SMS 2003 site code and install SCCM client</title>
		<link>http://virtualplumbr.wordpress.com/2010/10/27/vb-script-to-check-for-specific-sms-2003-site-code-and-install-sccm-client/</link>
		<comments>http://virtualplumbr.wordpress.com/2010/10/27/vb-script-to-check-for-specific-sms-2003-site-code-and-install-sccm-client/#comments</comments>
		<pubDate>Thu, 28 Oct 2010 00:07:56 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[sccm]]></category>
		<category><![CDATA[vbs]]></category>
		<category><![CDATA[sccm client]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=296</guid>
		<description><![CDATA[I prefer to do the SCCM client upgrade from the SCCM server rather than using a script but I was asked to develop one. _________________SCRIPT BEGINS_________________ &#8216;on error resume next strComputer = &#8220;.&#8221; Set oSMSClient = CreateObject (&#8220;Microsoft.SMS.Client&#8221;) Set WSHShell = CreateObject(&#8220;WScript.Shell&#8221;) &#8216;Check the site code of SMS 2003 client If Err.Number 0 Then &#8216;wscript.echo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=296&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I prefer to do the SCCM client upgrade from the SCCM server rather than using a script but I was asked to develop one.</p>
<p>_________________SCRIPT BEGINS_________________</p>
<p>&#8216;on error resume next</p>
<p>strComputer = &#8220;.&#8221;<br />
Set oSMSClient = CreateObject (&#8220;Microsoft.SMS.Client&#8221;)<br />
Set WSHShell = CreateObject(&#8220;WScript.Shell&#8221;)</p>
<p>&#8216;Check the site code of SMS 2003 client<br />
If Err.Number  0 Then<br />
    &#8216;wscript.echo &#8220;Could not create SMS Client Object &#8211; quitting&#8221;<br />
    wscript.quit<br />
End If<br />
mySiteCode= oSMSClient.GetAssignedSite<br />
&#8216;wscript.echo &#8220;Assigned Site Code is : &#8221; &amp; mySiteCode<br />
&#8216;Set oSMSClient=Nothing</p>
<p>&#8216;Determine if the site code for SMS 2003 client is ABC, DEF or XYZ</p>
<p>If mySiteCode=&#8221;ABC&#8221; Then<br />
SCCMcmd = &#8220;&#8221;"C:\Program Files\IT\SccmClientSP2ICP1\ccmsetup.exe&#8221;"&#8221; &amp; &#8221; /noservice SMSSITECODE=ABC SMSSLP=sccm.hega.com FSP=sccm.hega.com SMSCACHESIZE=5000 CCMENABLELOGGING=TRUE CCMLOGLEVEL=0 CCMLOGMAXHISTORY=5&#8243;<br />
Set SCCMin = WSHShell.Exec(SCCMcmd)<br />
Else<br />
	If mySiteCode=&#8221;DEF&#8221; Then<br />
	SCCMcmd = &#8220;&#8221;"C:\Program Files\IT\SccmClientSP2ICP1\ccmsetup.exe&#8221;"&#8221; &amp; &#8221; /noservice SMSSITECODE=DEF SMSSLP=sccm.hega.com FSP=sccm.hega.com SMSCACHESIZE=5000 CCMENABLELOGGING=TRUE CCMLOGLEVEL=0 CCMLOGMAXHISTORY=5&#8243;<br />
	Set SCCMin = WSHShell.Exec(SCCMcmd)<br />
	Else<br />
		If mySiteCode=&#8221;XYZ&#8221; Then<br />
		SCCMcmd = &#8220;&#8221;"C:\Program Files\IT\SccmClientSP2ICP1\ccmsetup.exe&#8221;"&#8221; &amp; &#8221; /noservice SMSSITECODE=XYZ SMSSLP=sccm.hega.com FSP=sccm.hega.com SMSCACHESIZE=5000 CCMENABLELOGGING=TRUE CCMLOGLEVEL=0 CCMLOGMAXHISTORY=5&#8243;<br />
		Set SCCMin = WSHShell.Exec(SCCMcmd)<br />
		End If<br />
	End If<br />
End If<br />
_________________SCRIPT ENDS_________________</p>
<p><strong>Note &#8211; Change the site codes to the ones in your environment, add &#8220;if&#8221; statements for more than three site codes, change the path of the sccm client installation files and other command line arguments.</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/296/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=296&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2010/10/27/vb-script-to-check-for-specific-sms-2003-site-code-and-install-sccm-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows PE does not detect network card in vmware esxi 4.1 vm</title>
		<link>http://virtualplumbr.wordpress.com/2010/09/23/windows-pe-does-not-detect-network-card-in-vmware-esxi-4-1-vm/</link>
		<comments>http://virtualplumbr.wordpress.com/2010/09/23/windows-pe-does-not-detect-network-card-in-vmware-esxi-4-1-vm/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 20:27:15 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[vmware esxi]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[LiteTouch.vbs]]></category>
		<category><![CDATA[MDT 2010 Update 1]]></category>
		<category><![CDATA[Windows 7 deployment]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=263</guid>
		<description><![CDATA[The default network card for Windows XP 32-bit virtual machine in VMware ESXi 4.1  is adapter type &#8220;Flexible&#8221;,  it shows up as &#8220;VMware Accelerated AMD PCNet Adapter&#8221; in device manager. When using MDT 2010 Update 1, a computer is refreshed from Windows XP to Windows 7 by running the LiteTouch.vbs. This script does some tasks and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=263&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The default network card for Windows XP 32-bit virtual machine in VMware ESXi 4.1  is adapter type &#8220;Flexible&#8221;,  it shows up as &#8220;VMware Accelerated AMD PCNet Adapter&#8221; in device manager.</p>
<p>When using MDT 2010 Update 1, a computer is refreshed from Windows XP to Windows 7 by running the LiteTouch.vbs. This script does some tasks and reboots the computer to Windows PE. The Windows PE used by the Litetouch method does not support the &#8220;VMware Accelerated AMD PCNet Adapter&#8221; network card. Windows PE stops with an error that it cannot connect to the deployment share.</p>
<p>On checking the bdd.log in C:\Minint\SMSOSD\OSDlogs, it clearly infered the network adapter was not found and drivers couldn&#8217;t be loaded. To read the log, hit F8 in Windows PE to get a command prompt window, go to minint\smsosd\osdlogs and type bdd.log to open the log file in notepad. I checked if an IP address was assigned using the ipconfig in command prompt, no IP was assigned.</p>
<p><strong><span style="text-decoration:underline;">Workaround</span></strong></p>
<p>Remove the default network card in the virtual machine. Add a new network card whose adapter type is E1000, it shows up as &#8220;Intel(R) PRO 100/1000 MT Network Connection&#8221; in device manager. The Windows PE used by the LiteTouch.vbs script supports this card and the refresh will proceed smoothly. The driver for E1000 is available at www.intel.com</p>
<p><a href="http://virtualplumbr.files.wordpress.com/2010/09/screenhunter_01-sep-28-16-34.jpg"><img class="alignleft size-full wp-image-289" title="ScreenHunter_01 Sep. 28 16.34" src="http://virtualplumbr.files.wordpress.com/2010/09/screenhunter_01-sep-28-16-34.jpg" alt="" width="644" height="504" /></a></p>
<p>﻿</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=263&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2010/09/23/windows-pe-does-not-detect-network-card-in-vmware-esxi-4-1-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>

		<media:content url="http://virtualplumbr.files.wordpress.com/2010/09/screenhunter_01-sep-28-16-34.jpg" medium="image">
			<media:title type="html">ScreenHunter_01 Sep. 28 16.34</media:title>
		</media:content>
	</item>
		<item>
		<title>keyboard doesn&#8217;t work in grub after bios update</title>
		<link>http://virtualplumbr.wordpress.com/2010/06/20/keyboard-doesnt-work-in-grub-after-bios-update/</link>
		<comments>http://virtualplumbr.wordpress.com/2010/06/20/keyboard-doesnt-work-in-grub-after-bios-update/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 19:57:35 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[dual boot]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[keyboard does not work]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=237</guid>
		<description><![CDATA[My desktop machine is dual boot, Windows 7 and Ubuntu 10.04 with grub as the boot loader. After a bios update the keyboard didn&#8217;t work in grub. It works in POST, works in the BIOS. The default OS to boot is Windows, the keyboard works in Windows too. It wouldn&#8217;t work in grub and hence [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=237&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My desktop machine is dual boot, Windows 7 and Ubuntu 10.04 with grub as the boot loader. After a bios update the keyboard didn&#8217;t work in grub. It works in POST, works in the BIOS. The default OS to boot is Windows, the keyboard works in Windows too. It wouldn&#8217;t work in grub and hence I could not boot to Ubuntu. The motherboard is a Gigabyte EP45-UD3P, updated bios from version F7 to F10.</p>
<p><strong>fix</strong> &#8211; enable the legacy usb emulation for keyboard in bios.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=237&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2010/06/20/keyboard-doesnt-work-in-grub-after-bios-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>custom catia deployment</title>
		<link>http://virtualplumbr.wordpress.com/2010/06/18/customcatiadeployment/</link>
		<comments>http://virtualplumbr.wordpress.com/2010/06/18/customcatiadeployment/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 23:50:19 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[repackaging]]></category>
		<category><![CDATA[catia]]></category>
		<category><![CDATA[catia deployment]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=87</guid>
		<description><![CDATA[There was a need to cut down the time to deploy Catia and Delmia (a very large application used in CAD engineering software). It takes 5+GB of disk space and writes about half-a-million files in our deployment. Copying a single 5GB file is faster than copying multiple files that take the same disk space because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=87&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There was a need to cut down the time to deploy Catia and Delmia (a very large application used in CAD engineering software). It takes 5+GB of disk space and writes about half-a-million files in our deployment. Copying a single 5GB file is faster than copying multiple files that take the same disk space because there is so much meta-data that needs to be written in the file table.</p>
<p><strong>old setup logic</strong></p>
<p>A wise-script wrapper was used to install Catia/Delmia. The script called the native setup program of catia with some command line parameters. After Catia installation, the script installed Delmia by calling the native setup program pass some command line parameters. After Delmia was installed it installed the service pack for catia/delmia the same way. After service pack installation it installed the latest hotfix. This script took 45-60 minutes to deploy in our environment. During the dicussion, a co-worker informed that only one registry key was needed for Catia/Delmia to work.</p>
<p><strong>new setup logic</strong></p>
<p>After a little research, I decided to install Catia, Delmia, Enovia, the service packs and the hofixes using the native setup. I then created a 7-zip self-extractable of Catia&#8217;s installation directory (C:\Program Files\Dassault Systemes). The new wise-script called the 7-zip self-extractable and passed some command-line parameters to extract the contents to the C:\Program Files\Dassault Systemes. A .reg file was created to create the registry entry in 32-bit Windows. The wise script imported the registry file during the installation.</p>
<p><strong>note</strong> &#8211; On x64-bit Windows, 64-bit edition of Catia needs to be installed to take advantage of the memory limit. Since wise-script exe is 32-bit, the registry key is re-directed to the Wow6432Node. But when Catia needs to refer the registry, it looks at the regular path and is not re-directed to the Wow6432Node. Example, when a new Catia hotfix is released, the native setup is used to install the hotfix to all machines that have Catia using a wise-script wrapper. The hotfix&#8217;s native setup looks for the registry key and will not install if the registry key is not found. Hence, a msi for x64-bit platform was created that put the key in its actual path, in other words, the registry key is not re-directed the Wow6432Node.</p>
<p>The new logic brought down the deployment time by 35-40%, depending on network traffic/speed. There were no failures during deployment when using the new logic. We had a few failures when we used the old logic. The new logic has been used for over three years now for a few upgrades of Catia without any issues.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/87/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/87/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/87/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=87&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2010/06/18/customcatiadeployment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>VirtualBox error: Kernel driver not installed (rc=-1908)</title>
		<link>http://virtualplumbr.wordpress.com/2010/06/18/kernaldriver1908/</link>
		<comments>http://virtualplumbr.wordpress.com/2010/06/18/kernaldriver1908/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 20:41:48 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[virtual box]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=205</guid>
		<description><![CDATA[Virtual machines in virtual box did not start after ubuntu 10.04 was updated, I believe kernel was updated. To fix the issue, open terminal and type the commands below sudo aptitude update sudo aptitude install dkms sudo /etc/init.d/vboxdrv setup The second command installs DKMS, which takes care of co-ordinating upgrades of individual applications with upgrades [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=205&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Virtual machines in virtual box did not start after ubuntu 10.04 was updated, I believe kernel was updated. To fix the issue, open terminal and type the commands below</p>
<p><em>sudo aptitude update<br />
sudo aptitude install dkms<br />
sudo /etc/init.d/vboxdrv setup</em></p>
<p>The second command installs DKMS, which takes care of co-ordinating upgrades of individual applications with upgrades of the linux kernel in future, so they always stay in sync. Reinstall virtual-box (third command) to fix the error this time.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=205&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2010/06/18/kernaldriver1908/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>enable remote desktop through the registry</title>
		<link>http://virtualplumbr.wordpress.com/2009/09/02/enable-remote-desktop-through-the-registry/</link>
		<comments>http://virtualplumbr.wordpress.com/2009/09/02/enable-remote-desktop-through-the-registry/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 14:59:25 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=188</guid>
		<description><![CDATA[A developer recently called outside business hours to Remote Desktop to a newly built Windows XP machine that is part of our domain. Remote Desktop is not enabled by default in our corporate image. It can be enabled in the registry. I could ping the machine but could not connect to its registry. Using Computer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=188&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A developer recently called outside business hours to Remote Desktop to a newly built Windows XP machine that is part of our domain. Remote Desktop is not enabled by default in our corporate image. It can be enabled in the registry.</p>
<p>I could ping the machine but could not connect to its registry. Using Computer Management console, connected to the remote machine and started the Remote Registry service (for some reason it was not started). I could connect to the registry of the remote machine now. Below are the steps to enable remote desktop through the registry</p>
<p>Start&gt;Run&gt;Regedit<br />
File&gt;Connect Remote Registry&gt;<em>enter the computer name or ip address</em><br />
Go to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server<br />
On the right pane, double-click fDenyTSConnections<br />
Change the value to 0, and then click OK</p>
<p>It is NOT necessary to reboot the machine. Check if you can remote desktop successfully. If you cannot, then reboot the machine and try again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=188&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2009/09/02/enable-remote-desktop-through-the-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>universal extractor</title>
		<link>http://virtualplumbr.wordpress.com/2009/05/21/universal-extractor/</link>
		<comments>http://virtualplumbr.wordpress.com/2009/05/21/universal-extractor/#comments</comments>
		<pubDate>Thu, 21 May 2009 20:31:57 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[repackaging]]></category>
		<category><![CDATA[extract archives]]></category>
		<category><![CDATA[setup archives]]></category>
		<category><![CDATA[universal extractor]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=125</guid>
		<description><![CDATA[There are applications whose setup files are archived into an .exe file which self extract when launched. Usually the extracted files are stored in %temp% folder (in Windows XP). An answered and/or silent deployment may not be possible if the setup was launched from the archived file. To create answered/silent installation, delete ALL the contents [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=125&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are applications whose setup files are archived into an .exe file which self extract when launched. Usually the extracted files are stored in %temp% folder (in Windows XP). </p>
<p>An answered and/or silent deployment may not be possible if the setup was launched from the archived file. To create answered/silent installation, delete ALL the contents of the %temp% folder before launching the setup. After launching the setup program, copy the extracted content in the %temp% folder to another location and cancel the installation. Depending upon the setup engine, a response file can be created by launching the setup from the extracted contents. </p>
<p>I have an application that is a legacy installshield setup archive. The setup was launched to copy all extracted contents from the temp folder to another location. When the setup was started from the extracted contents it threw an error that some source files were missing. The archive was 70MB, while the extracted contents was only 20MB. The installshield command-line switch was used on the archive file to extract its contents to a specified location without success. Filemon utility couldn&#8217;t capture all the files that were extracted. I&#8217;m not sure what I missed.</p>
<p>I found a utility called <a href="http://legroom.net/software/uniextract"><strong>Universal Extractor</strong></a>. It extracts files from single .exe install archives and other type of archives. It extracted the archive (that was giving trouble) to location I specified. I could complete the installation successfully now from the extracted contents to create an answer file.</p>
<p>This is a very handy utility for software application repackagers.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=125&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2009/05/21/universal-extractor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>access esxi partition</title>
		<link>http://virtualplumbr.wordpress.com/2009/05/21/access-esxi-partition/</link>
		<comments>http://virtualplumbr.wordpress.com/2009/05/21/access-esxi-partition/#comments</comments>
		<pubDate>Thu, 21 May 2009 17:17:54 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[vmware esxi]]></category>
		<category><![CDATA[access esxi partition]]></category>
		<category><![CDATA[esxi drivers]]></category>
		<category><![CDATA[ubuntu live cd]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=103</guid>
		<description><![CDATA[My lab runs vmware esxi 3.5 update 3. Esxi did not detect the on-board intel network card on the host machine. I downloaded the driver file that included support for the network card from here There are articles that explain how to add the driver file(s) and create a new esxi cd with the updated [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=103&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My lab runs vmware esxi 3.5 update 3. Esxi did not detect the on-board intel network card on the host machine. I downloaded the driver file that included support for the network card from <a href="http://www.vm-help.com/esx/esx3i/customize_oem_tgz.php">here</a></p>
<p>There are articles that explain how to add the driver file(s) and create a new esxi cd with the updated drivers. I didn&#8217;t want to create a new cd.</p>
<p>Booted (esxi host) using a Ubuntu Desktop Edition Live CD. It mounted the esxi partitions on the esxi host. Renamed oem.tgz on the esxi partition (backup for DR purpose). Renamed the downloaded file to oem.tgz and copied it (copy-paste) to the esxi partition. Shutdown ubuntu and removed the cd. Restarted the esxi host to boot to esxi. It recognized my network card and I could configure the network settings in esxi.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=103&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2009/05/21/access-esxi-partition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;boot error&#8221; &#8211; vmware esxi on usb flash drive</title>
		<link>http://virtualplumbr.wordpress.com/2009/05/20/boot-error-vmware-esxi-on-usb/</link>
		<comments>http://virtualplumbr.wordpress.com/2009/05/20/boot-error-vmware-esxi-on-usb/#comments</comments>
		<pubDate>Wed, 20 May 2009 17:37:07 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[vmware esxi]]></category>
		<category><![CDATA[boot error]]></category>
		<category><![CDATA[esxi 3.5 update 3]]></category>
		<category><![CDATA[esxi on usb]]></category>
		<category><![CDATA[usb emulation]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=78</guid>
		<description><![CDATA[I installed vmware esxi 3.5 update 3 on a usb flash drive. Usb boot was enabled in the bios, usb is the first boot option in bios. Tried other usb ports on the esxi host machine, still got &#8220;Boot Error&#8221;. Tried a different usb flash drive, same error. The issue was resolved after usb emulation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=78&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I installed vmware esxi 3.5 update 3 on a usb flash drive. Usb boot was enabled in the bios, usb is the first boot option in bios. Tried other usb ports on the esxi host machine, still got &#8220;Boot Error&#8221;. Tried a different usb flash drive, same error.</p>
<p>The issue was resolved after usb emulation in bios was changed to emulate hard-drive. The default setting on the motherboard was “Auto”</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=78&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2009/05/20/boot-error-vmware-esxi-on-usb/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
		<item>
		<title>windows shutdown command</title>
		<link>http://virtualplumbr.wordpress.com/2009/05/19/shutdown-command-in-windows/</link>
		<comments>http://virtualplumbr.wordpress.com/2009/05/19/shutdown-command-in-windows/#comments</comments>
		<pubDate>Tue, 19 May 2009 21:25:05 +0000</pubDate>
		<dc:creator>vPlumbr</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[shutdown command]]></category>

		<guid isPermaLink="false">http://virtualplumbr.wordpress.com/?p=51</guid>
		<description><![CDATA[Lot of Windows users leave their machines ON during the night/weekend because certain tasks may run for few minutes after they leave. Lets say, I am copying big file(s) at the end of the day and windows shows it will take an hour. Windows can be shutdown at a scheduled time. Go to Start&#62;Run and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=51&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Lot of Windows users leave their machines ON during the night/weekend because certain tasks may run for few minutes after they leave. </p>
<p>Lets say, I am copying big file(s) at the end of the day and windows shows it will take an hour. Windows can be shutdown at a scheduled time. Go to Start&gt;Run and type the command <strong>shutdown -s -t 7200</strong>, this command will shutdown windows in 2 hours (7200 seconds) from the time the shutdown command was given. Give 2-3 times the estimated time to be on the safer side. The machine runs for 2 hours instead of 15 hours (60 hours if it was on during the weekend). GO-GREEN!!!</p>
<p>Open a windows command prompt, type shutdown /? to learn more about the shutdown command</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/virtualplumbr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/virtualplumbr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/virtualplumbr.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=virtualplumbr.wordpress.com&amp;blog=7091986&amp;post=51&amp;subd=virtualplumbr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://virtualplumbr.wordpress.com/2009/05/19/shutdown-command-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/63c87525e8c570d9edc09a8b88f26e56?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vPlumbr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
