<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	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>Comments for Rob&#039;s Blog</title>
	<atom:link href="http://robwhitehouse.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://robwhitehouse.com</link>
	<description>A bunch of random notes from working in IT</description>
	<lastBuildDate>Fri, 17 Feb 2012 06:43:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Using Windows XP with NLA by Alix</title>
		<link>http://robwhitehouse.com/2009/10/27/using-windows-xp-with-nla/#comment-296</link>
		<dc:creator><![CDATA[Alix]]></dc:creator>
		<pubDate>Fri, 17 Feb 2012 06:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=187#comment-296</guid>
		<description><![CDATA[Thanks a lot !]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unattended XP Installs with Windows Deployment Services by LFC</title>
		<link>http://robwhitehouse.com/2007/08/15/unattended-xp-installs-with-windows-deployment-services/#comment-295</link>
		<dc:creator><![CDATA[LFC]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 22:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/windows/wds/unattended-xp-installs-with-windows-deployment-services/#comment-295</guid>
		<description><![CDATA[I got some help that solved my issue. It turns out WindowsPE was running a command called startnet.cmd that was overwriting my sysprep.inf. I then found a batch script that removes the two lines in startnet.cmd that are causing the problem.]]></description>
		<content:encoded><![CDATA[<p>I got some help that solved my issue. It turns out WindowsPE was running a command called startnet.cmd that was overwriting my sysprep.inf. I then found a batch script that removes the two lines in startnet.cmd that are causing the problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Unattended XP Installs with Windows Deployment Services by LFC</title>
		<link>http://robwhitehouse.com/2007/08/15/unattended-xp-installs-with-windows-deployment-services/#comment-294</link>
		<dc:creator><![CDATA[LFC]]></dc:creator>
		<pubDate>Wed, 18 Jan 2012 02:27:21 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/windows/wds/unattended-xp-installs-with-windows-deployment-services/#comment-294</guid>
		<description><![CDATA[I have also been having trouble getting XP SP3 to deploy unattended. The sysprep.inf file that I have at C:\sysprep\sysprep.inf works perfectly when I deploy the syspreped image with Acronis.

However, when I build a configuration and then a deployment set in RPK 3.4, the ensuing image does not use my sysprep.inf for an unattended setup. I am trying to use the xml posted to generate a usable XPUnattend.xml, but I have not been able to get that working.

If any of the previous posters could let me know how they got their deployments working I would be forever grateful.]]></description>
		<content:encoded><![CDATA[<p>I have also been having trouble getting XP SP3 to deploy unattended. The sysprep.inf file that I have at C:\sysprep\sysprep.inf works perfectly when I deploy the syspreped image with Acronis.</p>
<p>However, when I build a configuration and then a deployment set in RPK 3.4, the ensuing image does not use my sysprep.inf for an unattended setup. I am trying to use the xml posted to generate a usable XPUnattend.xml, but I have not been able to get that working.</p>
<p>If any of the previous posters could let me know how they got their deployments working I would be forever grateful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apply an update to an offline WIM image by bookgrub</title>
		<link>http://robwhitehouse.com/2010/04/11/apply-an-update-to-an-offline-wim-image/#comment-289</link>
		<dc:creator><![CDATA[bookgrub]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 04:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=205#comment-289</guid>
		<description><![CDATA[Thanks WordPress!

Between that first set of quotes, and before the \%i, should be the full path to the folder you have the msu files in.]]></description>
		<content:encoded><![CDATA[<p>Thanks WordPress!</p>
<p>Between that first set of quotes, and before the \%i, should be the full path to the folder you have the msu files in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apply an update to an offline WIM image by bookgrub</title>
		<link>http://robwhitehouse.com/2010/04/11/apply-an-update-to-an-offline-wim-image/#comment-288</link>
		<dc:creator><![CDATA[bookgrub]]></dc:creator>
		<pubDate>Tue, 03 Jan 2012 04:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=205#comment-288</guid>
		<description><![CDATA[Eric C, I just use a &lt;b&gt;for /f&lt;/b&gt; command for this. Has worked so far.

&lt;code&gt;
dir /b &quot;&quot; &gt; d:\out.txt

for /f &quot;delims=&quot; %i in (D:\out.txt) do dism /Image:D:\Mount /Add-Package /PackagePath:&quot;\%i&quot;
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>Eric C, I just use a <b>for /f</b> command for this. Has worked so far.</p>
<p><code><br />
dir /b "" &gt; d:\out.txt</p>
<p>for /f "delims=" %i in (D:\out.txt) do dism /Image:D:\Mount /Add-Package /PackagePath:"\%i"<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apply an update to an offline WIM image by Joshua Lyndon</title>
		<link>http://robwhitehouse.com/2010/04/11/apply-an-update-to-an-offline-wim-image/#comment-241</link>
		<dc:creator><![CDATA[Joshua Lyndon]]></dc:creator>
		<pubDate>Sat, 24 Dec 2011 11:20:52 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=205#comment-241</guid>
		<description><![CDATA[Clear, concise, and immensely time-saving. Thanks Rob.]]></description>
		<content:encoded><![CDATA[<p>Clear, concise, and immensely time-saving. Thanks Rob.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apply an update to an offline WIM image by Marc</title>
		<link>http://robwhitehouse.com/2010/04/11/apply-an-update-to-an-offline-wim-image/#comment-286</link>
		<dc:creator><![CDATA[Marc]]></dc:creator>
		<pubDate>Thu, 22 Dec 2011 17:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=205#comment-286</guid>
		<description><![CDATA[Hi, 

It appears that the command below will add a set of drivers rather than one-by-one:-

dism /Image:D:Mount /Add-Driver /Driver:c:driverpackage -recurse

This is assuming the top-level folder structure ends where you state, so for a Dell driver package, it would probably read:

D:DriversWin7x86 -recurse

I&#039;m not sure if the -recurse command works with update packages, but will be trying next week.]]></description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>It appears that the command below will add a set of drivers rather than one-by-one:-</p>
<p>dism /Image:D:Mount /Add-Driver /Driver:c:driverpackage -recurse</p>
<p>This is assuming the top-level folder structure ends where you state, so for a Dell driver package, it would probably read:</p>
<p>D:DriversWin7x86 -recurse</p>
<p>I&#8217;m not sure if the -recurse command works with update packages, but will be trying next week.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Script: Auto-generate Outlook Signature by Nassoro</title>
		<link>http://robwhitehouse.com/2007/10/31/script-auto-generate-outlook-signature/#comment-259</link>
		<dc:creator><![CDATA[Nassoro]]></dc:creator>
		<pubDate>Thu, 17 Nov 2011 17:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/windows/script-auto-generate-outlook-signature/#comment-259</guid>
		<description><![CDATA[Hi All,

I need help to create auto reply to my office &quot;help desk email&quot;.
I want auto reply to happen between 5:01pm to 8:00 am then switched off during working hours *8:01am to 5:00pm everyday.

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi All,</p>
<p>I need help to create auto reply to my office &#8220;help desk email&#8221;.<br />
I want auto reply to happen between 5:01pm to 8:00 am then switched off during working hours *8:01am to 5:00pm everyday.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Server 2008 Core &#8211; Useful Commands by Volverin Aaryan</title>
		<link>http://robwhitehouse.com/2008/09/24/windows-server-2008-core-useful-commands/#comment-265</link>
		<dc:creator><![CDATA[Volverin Aaryan]]></dc:creator>
		<pubDate>Thu, 10 Nov 2011 10:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=49#comment-265</guid>
		<description><![CDATA[Awesome one dude.. I had been using linux and windows was the thing not a piece of cake for me in the initial stages... but found out your blog... Man its very impressive, really appreciate your work nad cheers to the efforts you made for arranging the commands.. thanks...]]></description>
		<content:encoded><![CDATA[<p>Awesome one dude.. I had been using linux and windows was the thing not a piece of cake for me in the initial stages&#8230; but found out your blog&#8230; Man its very impressive, really appreciate your work nad cheers to the efforts you made for arranging the commands.. thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dual booting Windows 7 and Windows Server 2008 R2 by Rob</title>
		<link>http://robwhitehouse.com/2009/01/27/dual-booting-windows-7-and-windows-server-2008-r2/#comment-270</link>
		<dc:creator><![CDATA[Rob]]></dc:creator>
		<pubDate>Tue, 27 Sep 2011 18:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://robwhitehouse.com/?p=71#comment-270</guid>
		<description><![CDATA[Hi John,

Not entirely sure - are both Windows 7 and Server 2008 x64 editions? With Windows 2008, you have to not only install the WLAN role but start the service too - it won&#039;t be started automatically if I remember rightly. Other than that, Windows 7 has more drivers out of the box than Windows 2008 (assuming you&#039;re not using R2) - have you applied SP2 for Windows 2008? Have you tried searching on both Windows Update and the manufacturer&#039;s website for drivers?

Hope this helps,

Rob]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>Not entirely sure &#8211; are both Windows 7 and Server 2008 x64 editions? With Windows 2008, you have to not only install the WLAN role but start the service too &#8211; it won&#8217;t be started automatically if I remember rightly. Other than that, Windows 7 has more drivers out of the box than Windows 2008 (assuming you&#8217;re not using R2) &#8211; have you applied SP2 for Windows 2008? Have you tried searching on both Windows Update and the manufacturer&#8217;s website for drivers?</p>
<p>Hope this helps,</p>
<p>Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>

