<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - simpleton's guide to universal imaging]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=3857</link>
		<description><![CDATA[The most recent posts in simpleton's guide to universal imaging.]]></description>
		<lastBuildDate>Thu, 09 Jul 2009 12:31:16 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32424#p32424</link>
			<description><![CDATA[<p>Gotcha. Although since i just got my setup working nicely i will probably steer clear for a while. </p><p>On a side note if you guys ever need help testing something i would be more then happy to help just let me know.</p>]]></description>
			<author><![CDATA[null@example.com (JustusIV)]]></author>
			<pubDate>Thu, 09 Jul 2009 12:31:16 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32424#p32424</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32423#p32423</link>
			<description><![CDATA[<div class="quotebox"><cite>JustusIV wrote:</cite><blockquote><p>What is hwidinstaller.exe?<br />Is that the same thing as DP_Install_Tool.cmd?</p></blockquote></div><p>It is and it is not...</p><p>One of our Users started on an idea... what if we only extract the drivers we need instead of all of them? Would it be faster? Better? He started coding... and did well, eventually convincing me that it was worth while. I then challenged them to a race LOL. I took the ball and ran with it... In the process I accidentally fixed a bug in one of the HWID&#039;s tools that we use to update the packs <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" />. Now that it is working in beta form I see that it will have other uses other than it&#039;s original intent. IE We have had requests for Per Machine packs. This is not feasable for us... However a user could use this tool to generate thier own per machine pack... which is a cool side effect.</p><p>The result is much like SAD M2, <br />except it only extracts drivers that match the HWIDs of the target machine...&nbsp; <br />(warmsnows app will also do this...)</p><p>Did i mention this tool is BETA or what we call a &#039;nightly&#039;... <br />the finisher is not called from the script<br />this allows you to see what was extracted / got matched with the machine<br />the finisher can be run manually</p><p>I hope that helps</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Thu, 09 Jul 2009 06:34:32 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32423#p32423</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32422#p32422</link>
			<description><![CDATA[<p>What is hwidinstaller.exe?<br />Is that the same thing as DP_Install_Tool.cmd?</p><br /><p>@llewxam: I do nearly the same thing, struggled with it for a day or two, but have it working now, Use sysprep to insert a batch file into GuiRunOnce. From the batch file i first call an autoit program i found and edited for my needs, very similar to the one you posted that cleans up the found new hardware (i just hit esc on the prompt). then i do two runs of DP_Install_Tool.cmd as 1 run does not get the graphics completely. From there i automatically rename the machine to the serial tag, reboot and automatically join the domain. OSP handles all HAL and mass storage issues for me. Driver packs do the drivers. Batch files handle what i need domain wise. <br />Thanks goes out to everyone for your help!<br />JustusIV</p>]]></description>
			<author><![CDATA[null@example.com (JustusIV)]]></author>
			<pubDate>Thu, 09 Jul 2009 02:40:51 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32422#p32422</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32421#p32421</link>
			<description><![CDATA[<p>re: New code tags... Wow your right i did not even notice... Off the hook, I am telling you what~</p><p>Glad your back... We have been flooded with sysprep questions and I can only handle the basic questions, with out you Psyco SysPrep gurus to bat cleanup the support is just not up to normal DriverPacks standards <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Thu, 09 Jul 2009 02:00:25 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32421#p32421</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32418#p32418</link>
			<description><![CDATA[<p>What I have done is written this in AutoIt and compiled it, and call it at GUIRunOnce via SysPrep, and I have SysPrep NOT scan for non-PNP hardware so it doesn&#039;t try any funny stuff, and not integrated any drivers to the master install.&nbsp; This will suppress the New Hardware Wizards, then runs OverFlow&#039;s awesome SAD by HWID available at <a href="http://driverpacks.sytes.net/driverpacks/Test%20Pack/OtherTmpFiles/HWIDInstaller.exe">http://driverpacks.sytes.net/driverpack … taller.exe</a>.&nbsp; For me, this has worked the best, but your mileage may vary......</p><br /><div class="codebox"><pre><code>$start = TimerInit()

Do

	SplashTextOn(&quot;auto driver loader&quot;,&quot;suppressing Found New Hardware Wizards&quot;,-1,50)

	Sleep(2000)

        If WinExists(&quot;Found New Hardware Wizard&quot;) Then 
		WinActivate(&quot;Found New Hardware Wizard&quot;)
		Send(&quot;{TAB}{TAB}{ENTER}&quot;)
	EndIf

	If WinExists(&quot;Hardware Update Wizard&quot;) Then 
		WinActivate(&quot;Hardware Update Wizard&quot;)
		Send(&quot;{ENTER}&quot;)
	EndIf

	If WinExists(&quot;System Settings Change&quot;) Then 
		WinActivate(&quot;System Settings Change&quot;)
		Send(&quot;{TAB}{ENTER}&quot;)
		ExitLoop
	EndIf

Until TimerDiff($start)&gt;30000

SplashTextOn(&quot;auto driver loader&quot;,&quot;installing drivers, your screen may flicker&quot;,-1,50)
Run(&quot;c:\d\hwidinstaller.exe&quot;)
WinWait(&quot;DriverPacks&quot;)
WinWait(&quot;DriverPacks SAD by HWID&quot;)
WinActivate(&quot;DriverPacks SAD by HWID&quot;)
Send(&quot;{ENTER}&quot;)

SplashOff()
Exit</code></pre></div><p>Don&#039;t forget to look at Galapo&#039;s great app OfflineSysPrep or MySysPrep, both are better than the MS SysPrep if you want some more customization.&nbsp; Since I (usually) don&#039;t even integrate Mass Storage drivers anymore, I use OSP from BartPE to inject detected MS drivers after dumping the image.&nbsp; May be more time-consuming, but it gets around having to endlessly prune the MS section down far enough to be thorough, yet not bonk NTLDR on the first boot...</p><br /><p>BTW, sorry I&#039;ve been absent from the forum for soooo long, I haven&#039;t had time to work on my own universal images in ages as my attention has been coding some pretty involved apps for work.&nbsp; I want to thank the people of this forum for their hard work, and want to thank the forum for getting me started with AutoIt, since picking it up earlier this year I have done some awesome things with it!!&nbsp; Hopefully my skills have improved a LOT, so if there is anything I can do to contribute some code to the project just let me know.</p><p>Ian</p><p>PS - OH, I like the new code tag, it doesn&#039;t wreck the spacing used in the code!!&nbsp; Spanky!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Thu, 09 Jul 2009 01:07:30 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32418#p32418</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32350#p32350</link>
			<description><![CDATA[<p>well at least you&#039;re kind and intelligent and have at least skimmed the forum... as evidenced by your response... </p><p>here is a starter link <a href="http://forum.driverpacks.net/viewtopic.php?pid=29693#p29693">http://forum.driverpacks.net/viewtopic. … 693#p29693</a></p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Mon, 06 Jul 2009 00:44:19 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32350#p32350</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32348#p32348</link>
			<description><![CDATA[<p>that is why i am looking for some conceptual advice here. I know that you are not a sysprep/imaging fan in general and would rather create a slipstreamed install disc. I have not seen anything describing the popups and KTD correlation - i did however read just before i posted that you describe KTD as a purely tech-lab based function and this should not be enabled for end-user destination computers.</p><p>I am sorry if this is covered somewhere else. Ill be quite now.</p>]]></description>
			<author><![CDATA[null@example.com (amfony)]]></author>
			<pubDate>Mon, 06 Jul 2009 00:25:57 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32348#p32348</guid>
		</item>
		<item>
			<title><![CDATA[Re: simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32347#p32347</link>
			<description><![CDATA[<p>Please take amoment to read the stickied posts in this forum (finish reading the skinlayers thread for example).</p><p>Why you have driversigning popups is covered dozens of times... (don&#039;t use make PNF or KTD)</p><p>I am sure you have not read my many posts in this forum (Universal Imaging) or you would not be adding sp3 after the install <img src="http://forum.driverpacks.net/img/smilies/sad.png" width="15" height="15" alt="sad" />... (Grrr)</p><p>did you read the <a href="http://forum.driverpacks.net/viewtopic.php?pid=31245">posting guidelines</a>? or <a href="http://forum.driverpacks.net/viewtopic.php?pid=4#p4">read before you post</a>? Seemingly no... if you did then you have failed to understand them.</p><br /><p>Welcome to DriverPacks, We are glad you&#039;re here and look forward to helping you. </p><p>We will not however hold your hand just to help you to find info that is posted in stickied threads and quite easily found useing the search feature.</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Mon, 06 Jul 2009 00:17:49 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32347#p32347</guid>
		</item>
		<item>
			<title><![CDATA[simpleton's guide to universal imaging]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=32345#p32345</link>
			<description><![CDATA[<p>Hi everyone.</p><p>1 this site is pretty amazing - i apologise for not being able to help myself with these simple conceptual problems.</p><p>What i am doing at the moment is attempting to create universal image for a range of HP computer models.</p><p>I do this by:</p><p>1 - installing the base XP on a physical machine (including partition as required)<br />2 - install all updates (sp3+)<br />3 - install all software &amp; configure supplimentals (default user etc)<br />4 - running with the guide by skinLayers (<a href="http://forum.driverpacks.net/viewtopic.php?id=1682">http://forum.driverpacks.net/viewtopic.php?id=1682</a>)<br />5 - create ghost image and deploy</p><p>I know that this is a good method, it has saved me alot of images. I thank you all for this, but i know there is a better way aswell.</p><p>1 - installing on vm seems to be a &quot;better&quot; method. Why i am not sure but it seems to be the way to go. I simply dont know how this would be done? I understand and have some experience with vm&#039;s (xen) but i get lost regarding drivers, pseudo drivers, fileSystem etc.<br />2 - driverpacks has helped me alot but after my sysprep of a destination computer i still get &quot;unsigned driver&quot; messages (over 100 in some cases) - i have ensure the the &quot;ignore driver warning&quot; is enabled in the finisher ini but it remains -- is this just a mistake on my half?</p><p>3 - i have read on the sysprep driver finder program -- if i understand correctly i could downbload and expand all the driverpacks in c:\D\ - run the driver finder then sysprep/image my master image. Would this work or am i missing a component here? </p><p>I know my questions arent so clear so i apologize. Thanks for any help.</p>]]></description>
			<author><![CDATA[null@example.com (amfony)]]></author>
			<pubDate>Mon, 06 Jul 2009 00:13:27 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=32345#p32345</guid>
		</item>
	</channel>
</rss>
