<?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>thebackroomtech &#187; script</title>
	<atom:link href="http://thebackroomtech.com/tag/script/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebackroomtech.com</link>
	<description>serving up the info back room techs everywhere find interesting</description>
	<lastBuildDate>Sat, 20 Nov 2010 03:13:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Counting the number of files in a directory, command line style</title>
		<link>http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/</link>
		<comments>http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 13:53:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[script]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[dir]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[subdirectory]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=2142</guid>
		<description><![CDATA[I needed to count the number of files in a directory on a Windows 2003 server.  Here&#8217;s the command that can easily be scripted: dir/b/a-d c:\directory &#124; find /v /c &#8220;::&#8221; You can also specify a file share instead of a directory name: dir/b/a-d \\server\share &#124; find /v /c &#8220;::&#8221; If you want to count the number [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I needed to count the number of files in a directory on a Windows 2003 server.  Here&#8217;s the command that can easily be scripted:</p>
<p><em>dir/b/a-d c:\directory | find /v /c &#8220;::&#8221;</em></p>
<p>You can also specify a file share instead of a directory name:</p>
<p><em>dir/b/a-d \\server\share | find /v /c &#8220;::&#8221;</em></p>
<p>If you want to count the number of files in a directory and all subdirectories, the command is:</p>
<p><em>dir/s/b/a-d \c:\directory | find /v /c &#8220;::&#8221;</em></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2010/08/23/use-command-line-switches-in-outlook-2010/" title="Use Command Line Switches in Outlook 2010">Use Command Line Switches in Outlook 2010</a></li><li><a href="http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/" title="Script to gracefully power off a VM guest">Script to gracefully power off a VM guest</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li><li><a href="http://thebackroomtech.com/2009/11/04/howto-disable-a-nic-when-running-sysprep/" title="Howto: Disable a NIC when running Sysprep">Howto: Disable a NIC when running Sysprep</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script to gracefully power off a VM guest</title>
		<link>http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/</link>
		<comments>http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/#comments</comments>
		<pubDate>Wed, 05 May 2010 10:43:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[virtualization]]></category>
		<category><![CDATA[Vmware]]></category>
		<category><![CDATA[3.0.2]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Shutdown]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vmware-cmd]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=2130</guid>
		<description><![CDATA[You can use vmware-cmd to shut down a VMware guest.  The syntax is [sourcecode language="perl"] vmware-cmd /vmfs/volumes/datastore1/guest1/guest1.vmx stop [/sourcecode] Powering off a VM guest is often part of a larger script, so I need to know when the guest is really down before executing the remainder of my script.  The following code checks the guest&#8217;s state using [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>You can use vmware-cmd to shut down a VMware guest.  The syntax is</p>
<p>[sourcecode language="perl"]</p>
<p>vmware-cmd /vmfs/volumes/datastore1/guest1/guest1.vmx stop</p>
<p>[/sourcecode]</p>
<p>Powering off a VM guest is often part of a larger script, so I need to know when the guest is really down before executing the remainder of my script.  The following code checks the guest&#8217;s state using <em>getstate</em>.  If the state=1, which means it&#8217;s still running, the script waits for the shutdown to complete.</p>
<p>[sourcecode language="perl"]<br />
# gently power off VM<br />
vmware-cmd /vmfs/volumes/datastore1/guest1/guest1.vmx stop</p>
<p># check VM state <br />
# If not powered off (state=0), sleep, and recheck VM state in 15 seconds<br />
while [ ` vmware-cmd /vmfs/volumes/datastore1/guest1/guest1.vmx getstate|grep on|wc -l` -eq 1 ]<br />
do<br />
echo &quot;Waiting for VM guest to shutdown&#8230;.&quot;<br />
sleep 15<br />
let COUNT=COUNT+1</p>
<p># check VM guest state 8 times<br />
if [ $COUNT -eq 8 ]<br />
then<br />
echo &quot;VM guest shutdown is taking too long. Cannot shut down guest VM.&quot;<br />
skip=&quot;1&quot;<br />
fi</p>
<p>done<br />
[/sourcecode]</p>
<p>Replace datastore1 with the name of and path to your datastore.  Replace guest1 with the name of your VMware guest.  Tested on Vmware ESX 3.0.2.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2010/06/28/fix-incompatible-device-specified-for-device-0-when-cold-migrating-vmware-guest/" title="Fix: Incompatible device specified for device &#8217;0&#8242; when cold migrating VMware guest">Fix: Incompatible device specified for device &#8217;0&#8242; when cold migrating VMware guest</a></li><li><a href="http://thebackroomtech.com/2009/05/07/capturing-virtual-machine-blue-screens-via-powershell/" title="Capturing Virtual Machine Blue Screens via Powershell">Capturing Virtual Machine Blue Screens via Powershell</a></li><li><a href="http://thebackroomtech.com/2008/08/13/vmware-express-patch-for-esx-and-esxi-35-now-available/" title="VMware Express Patch for ESX and ESXi 3.5 now available">VMware Express Patch for ESX and ESXi 3.5 now available</a></li><li><a href="http://thebackroomtech.com/2008/08/07/free-vmware-esxi-licenses/" title="Free VMware ESXi licenses">Free VMware ESXi licenses</a></li><li><a href="http://thebackroomtech.com/2008/07/18/free-configcheck-utility-for-vmware-esx-host-security-assesment/" title="Free ConfigCheck Utility for VMware ESX host security assesment">Free ConfigCheck Utility for VMware ESX host security assesment</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script to remotely list Windows local administrator group membership</title>
		<link>http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/</link>
		<comments>http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 17:31:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[script]]></category>
		<category><![CDATA[administrator]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[membership]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=2053</guid>
		<description><![CDATA[The following script can be run against remote Windows machines, and will enumerate the contents of the remote server&#8217;s local administrators group. It requires Sysinternals PSExec utility, and must be run with administrative credentials.  Set the four paths to the correct locations for your workstation. REM set path to PSexec on machine the script is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The following script can be run against remote Windows machines, and will enumerate the contents of the remote server&#8217;s local administrators group.</p>
<div>It requires Sysinternals <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx">PSExec</a> utility, and must be run with administrative credentials.  Set the four paths to the correct locations for your workstation.</div>
<p><em><span style="color:#0000ff;">REM set path to PSexec on machine the script is being run from<br />
Set PSExecDir=c:\pstools</span></em></p>
<p><em><span style="color:#0000ff;">REM Set file that contains the list of all your remote machines<br />
Set InputFile=C:\servers.txt</span></em></p>
<p><em><span style="color:#0000ff;">REM Set path to file where administrator group membership is logged<br />
Set OutputFile=C:\localadmins.txt</span></em></p>
<p><em><span style="color:#0000ff;">REM set path to error log file<br />
Set ErrorFile=C:\errors.txt</span></em></p>
<p><em><span style="color:#0000ff;">for /f %%a in (%InputFile%) do (</span></em></p>
<p><em><span style="color:#0000ff;">echo *** Checking Server %%a *** &gt;&gt; %OutputFile%</span></em></p>
<p><em><span style="color:#0000ff;">%PSExecDir%\psexec \\%%a net localgroup administrators &gt;&gt; %OutputFile%</span></em></p>
<p><em><span style="color:#0000ff;">IF ERRORLEVEL 1 (echo Problem with obtaining local administrators on %%a &gt;&gt; %ErrorFile%)<br />
)</span></em></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li><li><a href="http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/" title="Howto automatically change the CD-ROM drive letter after running sysprep">Howto automatically change the CD-ROM drive letter after running sysprep</a></li><li><a href="http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/" title="Find Windows system uptime from the command line">Find Windows system uptime from the command line</a></li><li><a href="http://thebackroomtech.com/2008/11/05/cmd-script-that-determines-if-a-directory-is-empty-and-sends-email-notification-of-status/" title=".cmd script that determines if a directory is empty and sends email notification of status">.cmd script that determines if a directory is empty and sends email notification of status</a></li><li><a href="http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/" title="Counting the number of files in a directory, command line style">Counting the number of files in a directory, command line style</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Script to find and email files in a directory</title>
		<link>http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/</link>
		<comments>http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 14:49:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[script]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[blat]]></category>
		<category><![CDATA[blat.exe]]></category>
		<category><![CDATA[Email]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=2036</guid>
		<description><![CDATA[I needed to write a batch file that would email some files, and could be run as a scheduled task.  I chose to use Blat as my email program, you can download it for free from SourceForge. The batch file requirements were:  1.  Had to email all the .xls files in one directory from the current date. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I needed to write a batch file that would email some files, and could be run as a scheduled task.  I chose to use Blat as my email program, you can <a href="http://sourceforge.net/projects/blat">download it</a> for free from SourceForge.</p>
<p>The batch file requirements were: </p>
<div>1.  Had to email all the .xls files in one directory from the current date.  Luckily for me the date was in the file name, so I just had to find all files in the format *MMDDYY*.xls</div>
<div> </div>
<div>2.  The emails had to be sent &#8220;To&#8221; some users, then &#8220;CC&#8221;d to others</div>
<div> </div>
<div>3.  I could only use free software (no shareware) but could use our internal smtp replay server to send the mail through.</div>
<div> </div>
<div>4. The Scheduled task that executes the script must run on a Windows 2003 server.</div>
<div> </div>
<div>The following script is what I came up with.  I&#8217;ll go through it line by line, then post the entire thing at the end.</div>
<div> </div>
<div>****************************************************</div>
<div> </div>
<div><span style="color:#800000;">Here I&#8217;m getting the current date in the month month day day year year format, and saving it to a variable named search.  This can obviously be changed to meet your particular need</span></div>
<div>REM set search date variable in MMDDYY format for file search</div>
<div>REM set search to month-date-year for date formatting</div>
<div>for /f &#8220;Tokens=1-4 Delims=/ &#8221; %%i in (&#8216;date /t&#8217;) do set search=%%j%%k%%l</div>
<div> </div>
<div><span style="color:#800000;">Adding a blank line to the log file ReportLog.txt since I like my logs nice and neat. Makes them easy to read.</span></div>
<div>echo. &gt;&gt; ReportLog.txt</div>
<div> </div>
<div><span style="color:#800000;">Writing the date and time the script starts to the log file ReportLog.txt</span></div>
<div>echo %date% %time% Starting script &gt;&gt; ReportLog.txt</div>
<div> </div>
<div><span style="color:#800000;">Using the variable search, which contains the current date, I&#8217;m getting a list of all .xls files from today and saving it in FileNames.txt</span></div>
<div>dir /b &#8220;\\server\share\%search%*.xls&#8221; &gt; FileNames.txt</div>
<div> </div>
<div><span style="color:#800000;">If there&#8217;s a problem retrieving the names of the files, write a message to the log file</span></div>
<div>IF ERRORLEVEL 1 (echo %date% %time%  problem with retrieving file names &gt;&gt; ReportLog.txt)</div>
<div> </div>
<div><span style="color:#800000;">Using find /c to count how many files are in filenames.txt, and saving that number in the variable NUMFILES</span></div>
<div>for /f &#8220;tokens=3&#8243; %%i in (&#8216;find /v /c &#8220;SomeStringNotToBeFound&#8221; filenames.txt&#8217;) do set NUMFILES=%%i</div>
<div> </div>
<div><span style="color:#800000;">If the variable NumFiles equals zero, there were no files found for today.  Skip to ZEROFILES to send an email alert</span></div>
<div>If %NUMFILES% EQU 0 GOTO ZEROFILES</div>
<div> </div>
<div><span style="color:#800000;">If NUMFILES isn&#8217;t zero, then files exist that need to be emailed.  There may be more than one file, so we&#8217;re going to use a loop to process all the files listed in FileNames.txt</span></div>
<div>For /F &#8220;tokens=1-2* delims=&#8221; %%B IN (FileNames.txt) DO (</div>
<div> </div>
<div><span style="color:#800000;">write the name of the file to the log file</span></div>
<div>echo file to email is %%B &gt;&gt; ReportLog.txt</div>
<div> </div>
<div><span style="color:#800000;">Use blat.exe to send the email to addresses specified in tolist.txt</span></div>
<div><span style="color:#800000;">Use blat.exe to send emails as CC to addresses specified in cclist.txt</span></div>
<div><span style="color:#800000;">Attached file is listed at the end of the command</span></div>
<div><span style="color:#800000;">This command is all one line, it may wrap on the page</span></div>
<div>blat.exe -tf tolist.txt -cf cclist.txt -subject &#8220;Report %%B&#8221; -body &#8220;Here is the current report.&#8221; -server smtp.yourdomain.com -f <a href="mailto:sender@yourdomain.com">sender@yourdomain.com</a> -attach &#8220;\\server\share\%%B&#8221;</div>
<div>)</div>
<div> </div>
<div><span style="color:#800000;">We&#8217;re done emailing the files, so skip over to WRITELOG</span></div>
<div>goto WRITELOG</div>
<div> </div>
<div><span style="color:#800000;">Zero files were found, so we need to send an email alert</span></div>
<div>:ZEROFILES</div>
<div> </div>
<div><span style="color:#800000;">write the name of the file to the log file, along with the date and time</span></div>
<div>echo %date% %time%  problem with retrieving number of current files &gt;&gt; ReportLog.txt</div>
<div> </div>
<div><span style="color:#800000;">Use blat.exe to send an email alert to addresses specified in problist.txt</span></div>
<div><span style="color:#800000;">This command is all one line, it may wrap on the page</span></div>
<div>blat.exe -tf problist.txt -subject &#8220;Problem with Report&#8221; -body &#8220;Problem sending the current report.&#8221; -server smtp.yourdomain.com -f <a href="mailto:sender@yourdomain.com">sender@yourdomain.com</a></div>
<div> </div>
<div><span style="color:#800000;">Writing the date and time the script starts to the log file ReportLog.txt</span></div>
<div>:WRITELOG</div>
<div>echo %date% %time% Ending Script &gt;&gt; ReportLog.txt</div>
<div> </div>
<div>****************************************************</div>
<div> </div>
<div>The script in it&#8217;s entirely:</div>
<div> </div>
<div>REM set search date variable in MMDDYY format for file search</div>
<div>REM set search to month-date-year for date formatting</div>
<div>for /f &#8220;Tokens=1-4 Delims=/ &#8221; %%i in (&#8216;date /t&#8217;) do set search=%%j%%k%%l</div>
<div> </div>
<div> </div>
<div>REM format ReportLog.txt</div>
<div>echo. &gt;&gt; ReportLog.txt</div>
<div>echo %date% %time% Starting script &gt;&gt; ReportLog.txt</div>
<div> </div>
<div> </div>
<div>REM Get the names of all log files for specified date, save to FileNames.txt</div>
<div>dir /b &#8220;\\server\share\%search%*.xls&#8221; &gt; FileNames.txt</div>
<div>IF ERRORLEVEL 1 (echo %date% %time%  problem with retrieving file names &gt;&gt; ReportLog.txt)</div>
<div> </div>
<div>REM Count how many files are in filenames.txt, put into %NUMFILES%</div>
<div>for /f &#8220;tokens=3&#8243; %%i in (&#8216;find /v /c &#8220;SomeStringNotToBeFound&#8221; filenames.txt&#8217;) do set NUMFILES=%%i</div>
<div> </div>
<div>If %NUMFILES% EQU 0 GOTO ZEROFILES</div>
<div> </div>
<div>REM loop when more than one file to be emailed</div>
<div>For /F &#8220;tokens=1-2* delims=&#8221; %%B IN (FileNames.txt) DO (</div>
<div>echo file to email is %%B &gt;&gt; ReportLog.txt</div>
<div>blat.exe -tf tolist.txt -cf cclist.txt -subject &#8220;Report %%B&#8221; -body &#8220;Here is the current report.&#8221; -server smtp.yourdomain.com -f <a href="mailto:sender@yourdomain.com">sender@yourdomain.com</a> -attach &#8220;\\server\share\%%B&#8221;</div>
<div>)</div>
<div>goto WRITELOG</div>
<div> </div>
<div>:ZEROFILES</div>
<div>echo %date% %time%  problem with retrieving number of current files &gt;&gt; ReportLog.txt</div>
<div>blat.exe -tf problist.txt -subject &#8220;Problem with Hold Report&#8221; -body &#8220;Problem emailing the current hold report.&#8221; -server smtp.yourdomain.com -f <a href="mailto:sender@yourdomain.com">sender@yourdomain.com</a></div>
<div> </div>
<div>:WRITELOG</div>
<div>REM format ReportLog.txt</div>
<div>echo %date% %time% Ending Script &gt;&gt; ReportLog.txt</div>
<div> </div>
<div>****************************************************</div>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2008/11/05/cmd-script-that-determines-if-a-directory-is-empty-and-sends-email-notification-of-status/" title=".cmd script that determines if a directory is empty and sends email notification of status">.cmd script that determines if a directory is empty and sends email notification of status</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/" title="Howto automatically change the CD-ROM drive letter after running sysprep">Howto automatically change the CD-ROM drive letter after running sysprep</a></li><li><a href="http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/" title="Find Windows system uptime from the command line">Find Windows system uptime from the command line</a></li><li><a href="http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/" title="Counting the number of files in a directory, command line style">Counting the number of files in a directory, command line style</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Howto: Disable a NIC when running Sysprep</title>
		<link>http://thebackroomtech.com/2009/11/04/howto-disable-a-nic-when-running-sysprep/</link>
		<comments>http://thebackroomtech.com/2009/11/04/howto-disable-a-nic-when-running-sysprep/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 11:25:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[deployment]]></category>
		<category><![CDATA[Command0]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[GuiRunOnce]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[netsh]]></category>
		<category><![CDATA[NIC]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Sysprep]]></category>
		<category><![CDATA[sysprep.inf]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=2029</guid>
		<description><![CDATA[Disabling a network card when running sysprepping a Windows machine is easy.  Two things need to happen:  1.  Add the following command to the [GuiRunOnce] section of your sysprep.inf file   Command0=&#8221;C:\temp\disablenic.cmd&#8221;   2.  On the machine you are sysprepping, create a C:\temp\disablenic.cmd file that contains the following:   netsh interface set interface &#8220;Local Area [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Disabling a network card when running sysprepping a Windows machine is easy.  Two things need to happen: </p>
<div>1.  Add the following command to the <em>[GuiRunOnce]</em> section of your <em>sysprep.inf</em> file</div>
<div> </div>
<div><em>Command0=&#8221;C:\temp\disablenic.cmd&#8221;</em></div>
<div> </div>
<div>2.  On the machine you are sysprepping, create a <em>C:\temp\disablenic.cmd</em> file that contains the following:</div>
<div> </div>
<div><em>netsh interface set interface &#8220;Local Area Connection 2&#8243; DISABLED</em></div>
<div> </div>
<div>Change the name of the interface you want disabled as needed.  To determine the names of all network interfaces on a system, run the following command:</div>
<div> </div>
<div><em>netsh interface show interface</em></div>
<div> </div>
<div>Proceed with syspreping as normal. When the machine boots up, the specified network interface(s) will be disabled.</div>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/" title="Howto automatically change the CD-ROM drive letter after running sysprep">Howto automatically change the CD-ROM drive letter after running sysprep</a></li><li><a href="http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/" title="Counting the number of files in a directory, command line style">Counting the number of files in a directory, command line style</a></li><li><a href="http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/" title="Script to gracefully power off a VM guest">Script to gracefully power off a VM guest</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/11/04/howto-disable-a-nic-when-running-sysprep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto automatically change the CD-ROM drive letter after running sysprep</title>
		<link>http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/</link>
		<comments>http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 12:56:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[deployment]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[CD-ROM]]></category>
		<category><![CDATA[CDROM]]></category>
		<category><![CDATA[diskpart]]></category>
		<category><![CDATA[diskpart.exe]]></category>
		<category><![CDATA[drive letter]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[optical]]></category>
		<category><![CDATA[optical drive]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Sysprep]]></category>
		<category><![CDATA[sysprep.inf]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=1990</guid>
		<description><![CDATA[I&#8217;m finalizing a Windows 2003 R2 build that will become our gold image, which will be the source of all new server deployments within our organization.  One challenge I had to overcome was getting the CD-ROM/DVD drive to be set to drive Z: after the syspreped image is cloned and booted. Many people are familiar with changing [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I&#8217;m finalizing a Windows 2003 R2 build that will become our gold image, which will be the source of all new server deployments within our organization.  One challenge I had to overcome was getting the CD-ROM/DVD drive to be set to drive Z: after the syspreped image is cloned and booted.</p>
<p>Many people are familiar with changing drive letters within the Device Management tool aka <em>devmgmt.msc</em>.  I needed to automate this task so the CD-ROM drive, which shows up as drive D on my image after running sysprep, would be automatically set to drive Z.</p>
<p>To accomplish this, I needed three things:</p>
<ol>
<li>An entry in the <em>[GuiRunOnce]</em> section of my <strong>sysprep.inf</strong> file that calls a batch file after booting up the sysprep&#8217;ed image for the first time. </li>
<li>The batch file mentioned in step 1, <strong>changeletter.cmd</strong> runs <em>diskpart.exe</em>, with the parameters supplied in <strong>drives.txt</strong></li>
<li>The <strong>drives.txt</strong> file, which details the <em>diskpart.exe</em> commands that change the CD-ROM&#8217;s drive letter from drive D to drive Z.</li>
</ol>
<p>The applicable portion on my <strong>sysprep.inf</strong> file:</p>
<p><em>[GuiRunOnce]<br />
Command0=&#8221;C:\changeletter.cmd&#8221;</em></p>
<p>My <strong>changeletter.cmd</strong> file:</p>
<p><em>diskpart /s c:\drives.txt</em></p>
<p>My <strong>drives.txt</strong> file:</p>
<p><em>select disk 0<br />
select volume d<br />
assign letter z noerr</em></p>
<p>Put all these pieces together, and your CD/DVD drive should be changed to drive letter Z after booting up the sysprep&#8217;ed image.  Note that in the <em>[GuiRunOnce]</em> section of the <strong>sysprep.inf</strong> file, the part to the left of the equals sign is <em>Command0</em>, as is Command zero.  If you wanted to run additional scripts, the next would be <em>Command1</em>, followed by <em>Command2</em>, etc.</p>
<p>If you&#8217;re curious about <a href="http://technet.microsoft.com/en-us/library/cc766465(WS.10).aspx" target="_self">diskpart.exe</a>, check out the details on syntax in <a href="http://support.microsoft.com/kb/300415" target="_self">KB300415</a>.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2009/11/04/howto-disable-a-nic-when-running-sysprep/" title="Howto: Disable a NIC when running Sysprep">Howto: Disable a NIC when running Sysprep</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li><li><a href="http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/" title="Find Windows system uptime from the command line">Find Windows system uptime from the command line</a></li><li><a href="http://thebackroomtech.com/2008/11/05/cmd-script-that-determines-if-a-directory-is-empty-and-sends-email-notification-of-status/" title=".cmd script that determines if a directory is empty and sends email notification of status">.cmd script that determines if a directory is empty and sends email notification of status</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/10/15/howto-automatically-change-the-cd-rom-drive-letter-after-running-sysprep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find Windows system uptime from the command line</title>
		<link>http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/</link>
		<comments>http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 12:43:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[up time]]></category>
		<category><![CDATA[uptime]]></category>
		<category><![CDATA[Windows 2003]]></category>
		<category><![CDATA[Windows 2008]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=1948</guid>
		<description><![CDATA[Here&#8217;s a quick and easy way of checking how long a Windows server or workstation has been up, via the command line.  It pipes the results of Net Statistics Workstation into find.  Run the following from a command prompt: net statistics workstation &#124; find /i &#8220;statistics since&#8221; The results will look like Statistics since 8/12/2009 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here&#8217;s a quick and easy way of checking how long a Windows server or workstation has been up, via the command line.  It pipes the results of Net Statistics Workstation into find.  Run the following from a command prompt:</p>
<p><em>net statistics workstation | find /i &#8220;statistics since&#8221;</em></p>
<p>The results will look like</p>
<p><em>Statistics since 8/12/2009 11:08 PM</em></p>
<p>Which shows the machine has been up since 11:08pm on August 12, 2009.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2009/04/24/howto-do-not-display-the-name-of-the-user-who-has-locked-a-windows-computer-or-server/" title="Howto: Do not display the name of the user who has locked a Windows computer or server">Howto: Do not display the name of the user who has locked a Windows computer or server</a></li><li><a href="http://thebackroomtech.com/2009/08/20/fix-the-ip-address-you-have-entered-for-this-network-adapter-is-already-assigned-to-another-adapter-that-is-hidden-from-the-network-connections-folder-because-it-is-not-physically-in-the-computer/" title="Fix: The IP address you have entered for this network adapter is already assigned to another adapter that is hidden from the Network Connections folder because it is not physically in the computer">Fix: The IP address you have entered for this network adapter is already assigned to another adapter that is hidden from the Network Connections folder because it is not physically in the computer</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li><li><a href="http://thebackroomtech.com/2009/10/16/microsoft-releases-load-simulation-tools-for-desktops/" title="Microsoft releases load simulation tools for desktops">Microsoft releases load simulation tools for desktops</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Fix: Userenv event 1521 and Userenv 1511 errors in Windows Server 2003 Application log</title>
		<link>http://thebackroomtech.com/2009/05/19/fix-userenv-event-1521-and-userenv-1511-errors-in-windows-server-2003-application-log/</link>
		<comments>http://thebackroomtech.com/2009/05/19/fix-userenv-event-1521-and-userenv-1511-errors-in-windows-server-2003-application-log/#comments</comments>
		<pubDate>Tue, 19 May 2009 07:36:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[cscript]]></category>
		<category><![CDATA[Profile]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[Userenv]]></category>
		<category><![CDATA[Windows 2003]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=1745</guid>
		<description><![CDATA[The following events were listed in the Windows 2003 event log when one of our second level help desk staff connected to the server console via RDP: Event 1521 Source Userenv  Windows cannot locate the server copy of your roaming profile and is attempting to log you on with your local profile. Changes to the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The following events were listed in the Windows 2003 event log when one of our second level help desk staff connected to the server console via RDP:</p>
<p><em>Event 1521 Source Userenv</em> </p>
<p><em>Windows cannot locate the server copy of your roaming profile and is attempting to log you on with your local profile. Changes to the profile will not be copied to the server when you logoff. Possible causes of this error include network problems or insufficient security rights. If this problem persists, contact your network administrator.   </em></p>
<div><em>DETAIL &#8211; The network name cannot be found.</em></div>
<div> </div>
<div><em>Event 1511 Source Userenv</em></div>
<div> </div>
<div><em>Windows cannot find the local profile and is logging you on with a temporary profile. Changes you make to this profile will be lost when you log off.</em></div>
<div> </div>
<div>The solution, as outlined in <a href="http://support.microsoft.com/kb/941339" target="_self">KB941339</a>, is to delete the SID entries for the source user account from the following registry subkey:</div>
<div> </div>
<div><em>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList</em></div>
<div> </div>
<div>To determine the user&#8217;s SID, save the script found at</div>
<div><a href="http://www.microsoft.com/technet/scriptcenter/resources/qanda/dec04/hey1203.mspx">http://www.microsoft.com/technet/scriptcenter/resources/qanda/dec04/hey1203.mspx</a></div>
<div>as a .vbs file.  </div>
<div> </div>
<div><em>strComputer = &#8220;.&#8221;</em></div>
<div><em>Set objWMIService = GetObject(&#8220;winmgmts:\\&#8221; &amp; strComputer &amp; &#8220;\root\cimv2&#8243;)</em></div>
<div><em>Set objAccount = objWMIService.Get _</em></div>
<div><em>    (&#8220;Win32_UserAccount.Name=&#8217;kenmyer&#8217;,Domain=&#8217;fabrikam&#8217;&#8221;)</em></div>
<div><em>Wscript.Echo objAccount.SID</em></div>
<div> </div>
<div>Change the <em>Win32_UserAccount.Name=&#8217;kenmyer&#8217;,Domain=&#8217;fabrikam</em></div>
<div> </div>
<div>from <em>kenmeyer</em> and <em>fabrikam</em> to the user account in question and your domain name.</div>
<p>I saved the script as getsid.vbs.  Open a command prompt, and execute the script using cscript:</p>
<div><em>cscript.exe getsid.vbs</em></div>
<p>The script will display the SID associated with the user account specified.  Delete this from:</p>
<div><em>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList</em></div>
<p>to correct the Userenv errors.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2009/09/01/find-windows-system-uptime-from-the-command-line/" title="Find Windows system uptime from the command line">Find Windows system uptime from the command line</a></li><li><a href="http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/" title="Counting the number of files in a directory, command line style">Counting the number of files in a directory, command line style</a></li><li><a href="http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/" title="Script to gracefully power off a VM guest">Script to gracefully power off a VM guest</a></li><li><a href="http://thebackroomtech.com/2010/02/25/fix-ipconfig-registerdns-results-in-rpc-server-unavailable-error/" title="FIX: ipconfig /registerdns results in RPC server unavailable error">FIX: ipconfig /registerdns results in RPC server unavailable error</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/05/19/fix-userenv-event-1521-and-userenv-1511-errors-in-windows-server-2003-application-log/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Capturing Virtual Machine Blue Screens via Powershell</title>
		<link>http://thebackroomtech.com/2009/05/07/capturing-virtual-machine-blue-screens-via-powershell/</link>
		<comments>http://thebackroomtech.com/2009/05/07/capturing-virtual-machine-blue-screens-via-powershell/#comments</comments>
		<pubDate>Thu, 07 May 2009 14:27:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[script]]></category>
		<category><![CDATA[.ps1]]></category>
		<category><![CDATA[Blue Screen]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[OCR]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[screen shot]]></category>
		<category><![CDATA[screeshot]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vm]]></category>

		<guid isPermaLink="false">http://thebackroomtech.com/?p=1720</guid>
		<description><![CDATA[Eric Sloof at ntpro.nl has a nice post on how to capture screen shots of virtual machine blue screens using Powershell.  You can find the code here. He then incorporated a Powershell script from Carter Shanklin that pushes a screenshot through Microsoft Office Document Imaging Library (MODI), OCR software found in Office 2003+, to extract [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Eric Sloof at <a href="http://www.ntpro.nl/">ntpro.nl</a> has a <a href="http://www.ntpro.nl/blog/archives/1097-Big-Brother-Really-Is-Watching.html">nice post</a> on how to capture screen shots of virtual machine blue screens using Powershell.  You can find the code <a href="http://www.ntpro.nl/blog/uploads/Get-ScreenShot-Copy9.ps1">here</a>.</p>
<p>He then incorporated a Powershell script from <a href="http://www.twitter.com/cshanklin">Carter Shanklin</a> that pushes a screenshot through <a href="http://www.codeproject.com/KB/office/modi.aspx?fid=172151&amp;df=90&amp;mpp=25&amp;noise=3&amp;sort=Position&amp;view=Quick&amp;fr=76&amp;select=1629759">Microsoft Office Document Imaging Library</a> <em>(MODI),</em> OCR software found in Office 2003+, to extract the text from the image.</p>
<p>Very nice. Definitely go <a href="http://www.ntpro.nl/blog/uploads/vmbsd.ps1">download his application</a>, the Virtual Machine Blue Screen Detector.  Detailed post <a href="http://www.ntpro.nl/blog/archives/1100-Virtual-Machine-Blue-Screen-detector.html">here</a>.</p>
<p>The final product, which reads out the BSOD can be found <a href="http://www.ntpro.nl/blog/uploads/vmbsd1.ps1">here</a>.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2010/05/05/script-to-gracefully-power-off-a-vm-guest/" title="Script to gracefully power off a VM guest">Script to gracefully power off a VM guest</a></li><li><a href="http://thebackroomtech.com/2008/08/08/powershell-script-to-change-from-static-to-dynamic-ip-addressing/" title="Powershell script to change from static to dynamic IP addressing">Powershell script to change from static to dynamic IP addressing</a></li><li><a href="http://thebackroomtech.com/2010/06/17/counting-the-number-of-files-in-a-directory-command-line-style/" title="Counting the number of files in a directory, command line style">Counting the number of files in a directory, command line style</a></li><li><a href="http://thebackroomtech.com/2009/12/07/script-to-remotely-list-windows-local-administrator-group-membership/" title="Script to remotely list Windows local administrator group membership">Script to remotely list Windows local administrator group membership</a></li><li><a href="http://thebackroomtech.com/2009/11/16/script-to-find-and-email-files-in-a-directory/" title="Script to find and email files in a directory">Script to find and email files in a directory</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2009/05/07/capturing-virtual-machine-blue-screens-via-powershell/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix for ConsoleOne.exe error – The procedure entry point WpSUDataLength could not be located in the dynamic link library gwenv1.dll</title>
		<link>http://thebackroomtech.com/2008/11/18/fix-for-consoleoneexe-error-the-procedure-entry-point-wpsudatalength-could-not-be-located-in-the-dynamic-link-library-gwenv1dll/</link>
		<comments>http://thebackroomtech.com/2008/11/18/fix-for-consoleoneexe-error-the-procedure-entry-point-wpsudatalength-could-not-be-located-in-the-dynamic-link-library-gwenv1dll/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 11:02:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Groupwise]]></category>
		<category><![CDATA[ConsoleOne]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[gwnenv1.dll]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[snapins]]></category>

		<guid isPermaLink="false">http://thebackroomtech.wordpress.com/?p=1206</guid>
		<description><![CDATA[Some of our administrators received the following messages when launching ConsoleOne 1.3.6f after updating to Groupwise version 7.0.3 snapins from version 6.5.5: The procedure entry point WpSUDataLength could not be located in the dynamic link library gwenv1.dll.    and An error occuring during ConsoleOne Startup.  ERROR:  java.lang.UnsatisfiedLinkError: ititIDs   The fix was to  copy gwenv1.dll from the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Some of our administrators received the following messages when launching <!--StartFragment-->ConsoleOne 1.3.6f after updating to Groupwise version 7.0.3 snapins from version 6.5.5:</p>
<p><!--StartFragment--><em>The procedure entry point WpSUDataLength could not be located in the dynamic link library gwenv1.dll.  </em> </p>
<p>and</p>
<div><em>An error occuring during ConsoleOne Startup.  ERROR:  java.lang.UnsatisfiedLinkError: ititIDs</em></div>
<div><em></em></div>
<p> </p>
<div><!--StartFragment-->The fix was to  copy gwenv1.dll from the Groupwise 7.0.3 client&#8217;s software distribution directory&#8217;s \win32\system32 directory to the local administrator&#8217;s c:\novell\consoleone\1.2\bin directory.</div>
<div> </div>
<div>You must ensure gwenv1.dll file is version 7.0.3.  Also check c:\windows\system32 for existence of prior version of gwenv1.dll.</div>
<p> </p>
<div>You can <a href="http://thebackroomtech.com/2008/03/04/making-groupwise-7-and-blackberry-enterprise-server-communicate/" target="_blank">read about other gwenv1.dll issues I encountered</a> that deal with the Groupwise client and Blackberry Enterprise Server (BES).</div>
<div><em></em></div>
<p><!--StartFragment--></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a href="http://thebackroomtech.com/2008/10/13/fix-the-novell-groupwise-address-book-is-the-only-address-book-shown-when-adding-users-to-personal-group-distribution-lists/" title="Fix: The Novell Groupwise Address Book is the only address book shown when adding users to personal group distribution lists">Fix: The Novell Groupwise Address Book is the only address book shown when adding users to personal group distribution lists</a></li><li><a href="http://thebackroomtech.com/2009/06/18/fix-groupwise-login-failed-login-rejected-8219/" title="Fix: Groupwise Login Failed Login Rejected (8219)">Fix: Groupwise Login Failed Login Rejected (8219)</a></li><li><a href="http://thebackroomtech.com/2009/03/25/fix-8209-error-when-attempting-to-create-an-archive-from-a-restored-groupwise-post-office-mailbox/" title="Fix: 8209 error when attempting to create an archive from a restored Groupwise post office mailbox">Fix: 8209 error when attempting to create an archive from a restored Groupwise post office mailbox</a></li><li><a href="http://thebackroomtech.com/2009/03/23/fix-faulting-application-gwpoaexe-version-7031068-faulting-module-gwwww1adll/" title="FIX: Faulting application gwpoa.exe, version 7.0.3.1068, faulting module gwwww1a.dll">FIX: Faulting application gwpoa.exe, version 7.0.3.1068, faulting module gwwww1a.dll</a></li><li><a href="http://thebackroomtech.com/2009/01/27/novell-tid-3801441-is-wrong-how-to-create-a-groupwise-user-with-a-specific-file-id-fid-for-accessing-an-archive-or-restoring-a-deleted-user/" title="Novell TID 3801441 Is Wrong! – How to create a GroupWise user with a specific File ID (FID) for accessing an archive, or restoring a deleted user">Novell TID 3801441 Is Wrong! – How to create a GroupWise user with a specific File ID (FID) for accessing an archive, or restoring a deleted user</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://thebackroomtech.com/2008/11/18/fix-for-consoleoneexe-error-the-procedure-entry-point-wpsudatalength-could-not-be-located-in-the-dynamic-link-library-gwenv1dll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 41/120 queries in 0.043 seconds using disk: basic
Object Caching 1394/1561 objects using disk: basic

Served from: thebackroomtech.com @ 2012-02-04 10:31:26 -->
