<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[DriverPacks.net Forum - how does Finisher nake nvcpl shut up?]]></title>
		<link>http://forum.driverpacks.net/viewtopic.php?id=3631</link>
		<description><![CDATA[The most recent posts in how does Finisher nake nvcpl shut up?.]]></description>
		<lastBuildDate>Thu, 02 Apr 2009 16:18:02 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30530#p30530</link>
			<description><![CDATA[<p>LOL, getting back to the point of this topic, I just now had a chance to try your suggestion and did a regedit /s nvidia.reg (renamed it...) and saw that the keys were added properly, but the silly nvcpl mesage keeps popping up.&nbsp; In desparation I yanked that out of the INFs and reimaged, but now the driver is broken&nbsp; <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" />&nbsp; &nbsp;Yeah, I&#039;ll try anything.....</p><p>Any other suggestions?</p><p>Thanks</p><p>Ian</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Thu, 02 Apr 2009 16:18:02 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30530#p30530</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30231#p30231</link>
			<description><![CDATA[<p>I tried your tool Jeff with the extra requests, and the PrepTool did finish with no issues.</p><p>Not sure when I&#039;ll run the installer, but I&#039;ll try to make time.</p><p>Ian</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Mon, 23 Mar 2009 15:09:20 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30231#p30231</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30230#p30230</link>
			<description><![CDATA[<p>OK, as promised, here is my code BEFORE I started using Kickarse&#039;s scan tool, so this code includes my own scanning routine.&nbsp; Make sure C:\DP exists, and EXTRACT the packs you want to work with to that folder.&nbsp; This code is AS-IS, so if you run the installer (justinstall_s 2.au3) it WILL DELETE the C:\DP folder when done, so comment out line 194 to prevent this.</p><p>My INF scanner: (justscan.au3)<br /></p><div class="codebox"><pre><code>TrayTip(&quot;generating databases&quot;, &quot;please wait a moment&quot;, 150, 1)

#include&lt;process.au3&gt;
$rc=_rundos(&quot;dir /s c:\dp\*.inf &gt;c:\dp\allinf.txt&quot;)

global $hwcount
global $hwgo
global $dirty
global $infcount
global $infcount2
global $gobatcount
global $trips
global $slashcount
global $strlength
global $ampcount

sleep(2000)

$allinf = FileOpen(&quot;c:\dp\allinf.txt&quot;, 0)
FileOpen(&quot;c:\dp\masterinflist.txt&quot;, 1)

Do

	$linein = FileReadLine($allinf)
	If @error = -1 Then ExitLoop

	$lookfordir = StringInStr($linein, &quot;Directory of&quot;)
	if $lookfordir&lt;&gt;0 Then
		$len=StringLen ($linein)
		$dirname=StringRight ( $linein, $len-14)
	EndIf

	$lookforinf = StringInStr($linein, &quot;.inf&quot;)
	if $lookforinf&lt;&gt;0 Then
		$len=StringLen ($linein)
		$infname=StringRight ( $linein, $len-39)
		FileWriteLine (&quot;c:\dp\masterinflist.txt&quot;, $dirname &amp; &quot;\&quot; &amp; $infname)
		$infcount2=$infcount2+1
	EndIf

until 1=2

FileClose($allinf)
FileClose(&quot;c:\dp\masterinflist.txt&quot;)

;start section where INFs are scanned for HWIDs

$mastinf=FileOpen(&quot;c:\dp\masterinflist.txt&quot;, 0)
FileOpen(&quot;c:\dp\masterhwid.txt&quot;, 1)

Do

	$hwidin = FileReadLine($mastinf)
	If @error = -1 Then ExitLoop
	$wroteone=0
	$infcount=$infcount+1

	$openinf=$hwidin
	$currentinf=FileOpen($openinf, 0)
	TrayTip(&quot;scanning inf &quot; &amp; $infcount &amp; &quot; of &quot; &amp; $infcount2 , $openinf, 15, 1)

	Do
		$infin = FileReadLine($currentinf)
		If @error = -1 Then ExitLoop

		$lookforperc = StringLeft($infin,1)
		if $lookforperc=&quot;%&quot; Then	
			$dirty=0
			if StringLeft($infin,1)=&quot;;&quot; then $dirty=1
					
			if $dirty=0 then 
				$infout=$infin
				$len222=stringlen($infin)
				for $n=1 to $len222
					
					$whatis=stringmid($infin,$n,1)
					if $whatis=&quot;\&quot; Then
						$leftcount=$n
						$rightcount=$n
						Do
							$findleft=stringmid($infin,$leftcount,1)
							if $findleft=&quot; &quot; then ExitLoop
							$leftcount=$leftcount-1					
						until $leftcount&lt;0
						Do
							$findright=stringmid($infin,$rightcount,1)
							if $findright=&quot; &quot; then ExitLoop
							$rightcount=$rightcount+1					
						until $rightcount&gt;$len222
							
						$infout=stringstripws(stringmid($infin,$leftcount,$rightcount-$leftcount),8)
							
					EndIf
					
				Next	
		
			endIf	
		if $dirty=&quot;0&quot; and $infout&lt;&gt;&quot;&quot; then 
			FileWriteLine (&quot;c:\dp\masterhwid.txt&quot;, $infout)
			$wroteone=1
		endif	
		EndIf
						
	until 1=2
		

if $wroteone=1 then FileWriteLine (&quot;c:\dp\masterhwid.txt&quot;, &quot;********&quot; &amp; $hwidin)
FileClose($openinf)
FileClose($currentinf)

until 1=2

FileClose(&quot;c:\dp\masterhwid.txt&quot;)

FileClose($mastinf)
FileDelete(&quot;c:\dp\allinf.txt&quot;)
Fileclose(&quot;c:\dp\masterinflist.txt&quot;)
FileDelete(&quot;c:\dp\masterinflist.txt&quot;)

TrayTip(&quot;finished &quot;, &quot;done scanning&quot;,15,1)

Exit</code></pre></div><p>Main install app (justinstall_s 2.au3) (named &quot;_s 2&quot; for SysPrep-tailored version, version 2)<br /></p><div class="codebox"><pre><code>;        Hands-Off Driver Installer v1.2 3/2/2009
;        by Ian Maxwell
;        llewxamnai@gmail.com
;
;        Make sure you have drivers extracted to C:\DP (subfolders from there are fine),  devcon.exe in
;        C:\DP, and dpinst.exe and dpinst.xml in C:\DP\INST.  Layout of dpinst.xml should be:
;
;        &lt;?xml version=&quot;1.0&quot; ?&gt;
;         &lt;dpinst&gt;
;          &lt;search&gt;
;           &lt;subDirectory&gt;*&lt;/subDirectory&gt;
;          &lt;/search&gt;
;          &lt;scanHardware/&gt;
;          &lt;legacyMode/&gt;
;        &lt;/dpinst&gt;
;
;        Also have a file called inst.cmd in C:\DP\INST with the following lines:
;
;        @echo off
;        title Driver Installer
;        c:\dp\inst\dpinst.exe /SW /C /S /SA

run(&quot;c:\windows\system32\suppress.exe&quot;)
SplashTextOn(&quot;auto driver loader stage 1/7&quot;,&quot;generating databases&quot;,-1,50)

#include&lt;process.au3&gt;
$rc=_rundos(&quot;c:\dp\devcon.exe hwids * &gt;c:\dp\hwids.txt&quot;)

global $hwcount
global $hwgo
global $dirty
global $infcount
global $infcount2
global $gobatcount
global $trips
global $slashcount
global $strlength
global $ampcount
;global $hwidcount      ;only include if needed, runs much slower with this on


;strip out unneeded info from hwids.txt

$id=FileOpen(&quot;c:\dp\hwids.txt&quot;,0)
FileOpen(&quot;c:\dp\hwidlist.txt&quot;,1)

Do

$idinraw = FileReadLine($id)
If @error = -1 Then ExitLoop
$idin=StringStripWS($idinraw,8)

$dirty=0
$clean = StringInStr($idin, &quot;\&quot;)
if $clean&lt;&gt;0 Then 
	if StringLeft($idin, 4)=&quot;ACPI&quot; then $dirty=1
	if StringLeft($idin, 4)=&quot;IDE\&quot; then $dirty=1
	if StringLeft($idin, 5)=&quot;ROOT\&quot; then $dirty=1
	if StringLeft($idin, 8)=&quot;STORAGE\&quot; then $dirty=1
	if StringLeft($idin, 8)=&quot;DETECTED&quot; then $dirty=1
		
  	$slashcount=0
 	$ampcount=0
  	$strlength=StringLen($idin)
  	for $trips=1 to $strlength		
  		if StringMid($idin,$trips, 1)=&quot;\&quot; then $slashcount=$slashcount+1
 	Next	
 	for $trips=1 to $strlength		
  		if StringMid($idin,$trips, 1)=&quot;&amp;&quot; then $ampcount=$ampcount+1
  	Next	
  	if $slashcount=1 and $ampcount=0 then $dirty=1	
		
	if $dirty=0 then FileWriteLine(&quot;c:\dp\hwidlist.txt&quot;,$idin)
    if $dirty=0 then $hwcount=$hwcount+1
EndIf
	
Until 1=2

FileClose(&quot;c:\dp\hwids.txt&quot;)
FileClose(&quot;c:\dp\hwidlist.txt&quot;)

;start section matching system&#039;s HWIDs to available drivers

$hwids=fileopen(&quot;c:\dp\hwidlist.txt&quot;,0)
FileOpen(&quot;c:\dp\tobeinst.txt&quot;,1)
$masterhwid=fileopen(&quot;c:\dp\masterhwid.txt&quot;,0)

Do

	$hwidin = FileReadLine($hwids)
	If @error = -1 Then ExitLoop
	$hwgo=$hwgo+1

	SplashTextOn(&quot;auto driver loader stage 2/7&quot;,&quot;running match scan &quot; &amp; $hwgo &amp; &quot; of &quot; &amp; $hwcount,-1,50)

	do
		$masthwidin = FileReadLine($masterhwid)
		If @error = -1 Then ExitLoop
		
		$lookformatch = StringInStr($masthwidin, $hwidin)
		if $lookformatch&lt;&gt;0 Then

			Do
				$masthwidin = FileReadLine($masterhwid)
				$findlocation = StringInStr($masthwidin, &quot;********&quot;)
				if $findlocation&lt;&gt;0 Then
					FileWriteLine(&quot;c:\dp\tobeinst.txt&quot;,StringTrimLeft($masthwidin,8))
					exitloop(2)
				endif	
		
			until 1=2
			
		EndIf

	until 1=2
	fileclose($masterhwid)
	$masterhwid=FileOpen(&quot;c:\dp\masterhwid.txt&quot;,0)
	

until 1=2

fileclose($masterhwid)
fileclose(&quot;c:\dp\hwidinst.txt&quot;)
fileclose(&quot;c:\dp\tobeinst.txt&quot;)

SplashTextOn(&quot;auto driver loader stage 3/7&quot;, &quot;finishing setup&quot;,-1,50)

; set up installer

fileopen(&quot;c:\dp\go.txt&quot;,1)
fileWriteLine(&quot;c:\dp\go.txt&quot;,&quot;x&quot;)
fileclose(&quot;c:\dp\go.txt&quot;)

$input=FileOpen(&quot;c:\dp\tobeinst.txt&quot;,0)

Do
	
$infname = FileReadLine($input)
If @error = -1 Then ExitLoop

$len=StringLen($infname)
for $count=$len to 1 step -1
	$justdir=StringLeft($infname,$count)
	IF StringRight($justdir,1)=&quot;\&quot; Then
		$justdir=StringLeft($infname,$count)
		ExitLoop
	EndIf	

Next

$gotxt=fileopen (&quot;c:\dp\go.txt&quot;,0)
Do
$txtin = FileReadLine($gotxt)
If @error = -1 Then ExitLoop
$finddup = StringInStr($txtin, $justdir)
if $finddup&lt;&gt;0 then ExitLoop
until 1=2

FileClose($gotxt)

if $finddup=0 then
	FileOpen(&quot;c:\dp\go.txt&quot;,1)
	FileWriteLine(&quot;c:\dp\go.txt&quot;, $justdir)
	fileclose(&quot;c:\dp\go.txt&quot;)
EndIf
until 1=2

FileClose(&quot;c:\dp\tobeinst.txt&quot;)
FileClose(&quot;c:\dp\go.txt&quot;)

$gotext=fileopen(&quot;c:\dp\go.txt&quot;,0)

SplashTextOn(&quot;auto driver loader stage 4/7&quot;, &quot;copying drivers to be installed&quot;,-1,50)

Do
$textinput = FileReadLine($gotext)
If @error = -1 Then ExitLoop
	
if $textinput&lt;&gt;&quot;x&quot; then DirCopy($textinput,&quot;c:\dp\inst\&quot; &amp; $gobatcount,1)
$gobatcount=$gobatcount+1

until 1=2

SplashTextOn(&quot;auto driver loader stage 5/7&quot;, &quot;installing your drivers now, the screen may flicker a few times&quot;,-1,50)

Run(&quot;c:\dp\inst\inst.cmd&quot;,&quot;&quot;,@SW_MINIMIZE)
sleep(3000)    ;needed so the system can have time to execute the installer before skipping right by it
WinWaitClose(&quot;Driver Installer&quot;)

sleep(3000)
SplashTextOn(&quot;auto driver loader stage 6/7&quot;, &quot;cleaning up&quot;,-1,50)
DirRemove(&quot;c:\d&quot;,1)
DirRemove(&quot;c:\dp&quot;,1)
run(&quot;c:\windows\system32\clean.exe&quot;)
splashoff()

Exit</code></pre></div><p>Code for clean.au3:<br /></p><div class="codebox"><pre><code>SplashTextOn(&quot;auto driver loader stage 7/7&quot;,&quot;performing final stage of asetup&quot;,-1,50)

RegDelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion&quot;, &quot;DevicePath&quot;)
RegWrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion&quot;, &quot;DevicePath&quot;, &quot;REG_EXPAND_SZ&quot;, &quot;%SystemRoot%\Inf&quot;)
RegDelete(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Start Page&quot;)
RegWrite(&quot;HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main&quot;, &quot;Start Page&quot;, &quot;REG_SZ&quot;, &quot;http://www..com&quot;)   ;removed my company name
RegDelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main&quot;, &quot;Default_Page_URL&quot;)
RegWrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main&quot;, &quot;Default_Page_URL&quot;, &quot;REG_SZ&quot;, &quot;http://www..com&quot;)   ;removed my company name
RegDelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main&quot;, &quot;Start Page&quot;)
RegWrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main&quot;, &quot;Start Page&quot;, &quot;REG_SZ&quot;, &quot;http://www..com&quot;)   ;removed my company name
RegDelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel&quot;, &quot;{20D04FE0-3AEA-1069-A2D8-08002B30309D}&quot;)   ;my computer icon on desktop
Regwrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel&quot;, &quot;{20D04FE0-3AEA-1069-A2D8-08002B30309D}&quot;, &quot;REG_DWORD&quot;, &quot;0&quot;)   ;don&#039;t hide my computer icon on desktop
RegDelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel&quot;, &quot;{450D8FBA-AD25-11D0-98A8-0800361B1103}&quot;)  ;my docs icon on desktop
RegWrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel&quot;, &quot;{450D8FBA-AD25-11D0-98A8-0800361B1103}&quot;, &quot;REG_DWORD&quot;, &quot;0&quot;)  ;don&#039;t hide my docs icon on desktop

FileOpen(&quot;c:\windows\system32\imgver.txt&quot;,1)
FileWriteLine(&quot;c:\windows\system32\imgver.txt&quot;,&quot;Windows XP OEM SP3 Image Version 1.6OSP 3/19/2009&quot;)
fileclose(&quot;c:\windows\system32\imgver.txt&quot;)

processclose(&quot;suppress.exe&quot;)

for $i=1 to 6
$allusers = FileFindFirstFile(&quot;c:\documents and settings\*.*&quot;)

	Do

		$user = FileFindNextFile($allusers) 
		If @error Then ExitLoop
		FileDelete(&quot;c:\docume~1\&quot;&amp;$user&amp;&quot;\desktop\inter*.*&quot;)
		FileDelete(&quot;c:\docume~1\&quot;&amp;$user&amp;&quot;\desktop\windo*.*&quot;)
		FileDelete(&quot;c:\docume~1\&quot;&amp;$user&amp;&quot;\desktop\hwids.txt&quot;)

	until 1=2

FileDelete(&quot;c:\*.txt&quot;)
DirRemove(&quot;c:\dp&quot;,1)
DirRemove(&quot;c:\d&quot;,1)
dirremove(&quot;c:\sysprep&quot;,1)
filedelete(&quot;c:\Documents and Settings\All Users\Start Menu\Programs\startup\just*.exe&quot;)

next

splashoff()
msgbox(0,&quot;DONE!&quot;,&quot;The automated driver installation and system preparation process is now finished.  After you close this message your should check to make sure all drivers are installed, and a reboot would be recommended to apply driver changes.&quot;)

Exit</code></pre></div><p>I have the for-next loop because I found many times that C:\DP was not being fully removed, something I also experienced a lot with Finisher when using Base for SysPrep integration...&nbsp; The loop makes it more likely to succeed (hasn&#039;t failed yet this way...).&nbsp; I included the rest of the typical deletions to the loop just in case&nbsp; <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><br /><p>Code for suppress.au3:<br /></p><div class="codebox"><pre><code>$start = TimerInit()

Do

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;)
	Exit
EndIf

Until TimerDiff($start)&gt;90000


Exit</code></pre></div><p>I have only <em>noticed</em> the System Settings Change window with XP Pro, so included the 90 second kill switch incase that window doesn&#039;t come up.</p><br /><p>Any questions/comments, let &#039;er rip.&nbsp; I also apologize about the spacing being gone due to the code tag, if anybody is interested in downloading the code in the raw au3 format let me know, that way the code will be much easier to follow.....</p><p>Ian</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Mon, 23 Mar 2009 14:36:42 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30230#p30230</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30183#p30183</link>
			<description><![CDATA[<p>Your tool does do what I set out to do, but I have several extras.&nbsp; I wish I had the code with me for what I do, maybe on Monday when I get back to the shop I&#039;ll post all of my code and let you see what I&#039;m up to.&nbsp; I&#039;ll summarize as best I can for now:</p><p>My current method is to get XP set up just right in VirtualBox, SysPrep it with just the standard MS SysPrep with no MS integration or PnP detection, just plain for Home and Mini-Setup option for Pro/MCE.<br />GhostCast the virtual installation by capturing a Bart ISO with VirtualBox and send the image to the physical installation (worst part of the whole process...)<br />Transfer the image to a real HDD with Ghost<br />Use OfflineSysPrep for HAL on next boot and MS injection plus a few other options<br />Reimage<br />Use Ghost Explorer to insert my apps and the driver cache in to the image</p><br /><p>My driver+other method then kicks in as follows:</p><p>The main app gets put in C:\Documents and Settings\All Users\Start Menu\Programs\Startup which is what does devcon * on the local machine the image was dunped on<br />The main app calls another simple one I wrote to automatically close any Found New Hardware Wizards, which closes at either the window that says driver installation is complete (forget the window name right now) or 90 seconds, whichever happens first<br />The main app then runs a match scan on the devcon output file against the master HWID file (currently Kickarse&#039;s modified INF HWID list)<br />As matches are found the names of the directories containing the matching INFs are written to a temp file<br />When the scan is finished the match directories are copied to a temp folder where dpinst and dpinst.xml are located<br />dpinst is then run to install the matches<br />The main app then attempts to delete the driver cache folder, calls another app, then closes itself<br />The last step is the above app, which will delete the driver cache, tidies up the Desktop a bit, and sets some registry entries for things like default homepage, and will eventually (hopefully) shut the silly NVCPL error up</p><br /><p>So you see, what I need it much more than one tool just for drivers, and with all of the dependencies involved, plus needing to try to do things like calling my cleanup/reg stuff after other programs have run, plus the feedback my installer gives since the whole process can take 5-8 minutes, it has just seemed like the right thing to do to keep mine going. I suppose I could just write an app to call your installer then follow up with my cleanup, but mine is working so well now that I&#039;m kinda disinclined to give it up!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" />&nbsp; Allllllll I want to do now is beef up my INF scanning tool.</p><p>OH YEAH, as for that, my original scanner outputted as follows:</p><p>HWID1<br />HWID2<br />HWID3<br />etc<br />***c:\dp\d\m\a...........<br />HWID1<br />HWID2<br />etc<br />***c:\dp\d\m\b</p><p>That way, as matches are found my installer would look for *** so it knew where it came from.&nbsp; Using FindHWIDs I had to make the out go</p><p>HWID<br />***source<br />HWID<br />***source<br />HWID<br />***source</p><p>So there is a lot of wasted space on redundant source locations.&nbsp; I <em>could</em> fairly easily make it more like my preferred method, but was at a point where I was putting too much time developing, my company has 4 locations and quite a few techs who use my images, so I hit a point where I felt like just giving them some updated images and stop tweaking!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" />&nbsp; They were stuck using images I did in early January, and I have made who-knows-how-many dozens of images since then.....</p><p>So, there is my huge overview, I swear just posting the code would take up less space!!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" />&nbsp; On Monday I will post the code as it is using my scanner, not modifying FindHWIDS.</p><p>Ian</p><br /><br /><p>Edit - Oh, and no I&#039;m not trying to do a KTD-type installation, I used to but stopped doing anything like that in January, you pointed out several times, using SAD as one example why, that it was silly keeping 3GB of drivers around in case a modem got installed months down the road, plus another of my techs complained about keeping the drivers.&nbsp; Plus if that install were to be re-SysPrepped (a practice I <span class="bbu">no longer</span> do...) the DevicePath entry in the registry just gets waaaaaaaay out of hand.&nbsp; &nbsp;So no, no KTD.</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Sat, 21 Mar 2009 02:57:35 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30183#p30183</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30179#p30179</link>
			<description><![CDATA[<p>well my routine is much more exacting, as is kickarses.</p><p>that is why it is hard to follow. it is actually intuitive. it first identifiys the manufacturers supported then finds each of the manufacturers individual platforms (2k, XP, 2k3, x64) &quot;supported section&quot; line by line. this avoids misreads you might encounter by accidentaly importing hwids that are ;disabled or are in a section that is actually an &quot;exclusion&quot; section <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" />. this is Tricky because many of the lines use variable substitutions and dealing with variable substitutions in an inf from a program is kinda tricky <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" />. </p><p>the output of mine has the advantage that the hwids for each of our supported platforms are separated so that only the correct hwids lists (based on platform IE XP,win2k, ect...) are applied to the target machine <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" />. (IE we dont need to extract folders based on HWID matches that are &quot;win2k only drivers&quot; when we are installing XP - ect...) </p><p>I think I have created the tool you that you set out to create... Please let me know if i have not <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /><br />IE <br />&nbsp; &nbsp;If my tool works why does it matter if the temp file used is in a different format???<br />&nbsp; &nbsp; Or tell me why the format is important to you and what that format is / needs to be...<br />&nbsp; &nbsp; &nbsp; are you trying to achive KTD or some similar function... talk to me... <br />&nbsp; &nbsp; &nbsp; I&#039;m sure it&#039;s easily doable if only i know what it is we&#039;re doing <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" /><br />and yes if it works I&#039;ll add it and credit you for motivateing me <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p> - I may never know if it works... <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /> <img src="http://forum.driverpacks.net/img/smilies/tongue.png" width="15" height="15" alt="tongue" /> <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p><p>PS Ithink mine works for 2k xp and 2k3 too...</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Sat, 21 Mar 2009 00:45:35 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30179#p30179</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30176#p30176</link>
			<description><![CDATA[<p>Yes, I used it on a few machines as a test, sorry if I never really gave any feedback!!&nbsp; I do like the feature where it keeps the drivers compressed until they are needed, and as I recall it worked very well.&nbsp; The only reason I am not using it now is because my own tool has come so far, and is more tailored to my uses (obviously, I wrote the bloody thing!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /> )&nbsp; Do you have plans to include it in a future release of Base?&nbsp; Do you need any more testing of it done?&nbsp; I&#039;d be happy to help shake any bugs out and offer some input if you&#039;d like, but testing of it may be a bit limited since my images are now locked down using my own tool.....&nbsp; But I could try to make some time to experiment with it.</p><p>On a side-note, I was going through the code for InstallByHWIDsPrepTool to see if I could either learn how your INF scanner works and see if I could use that to help my own routine, or just reformat your output to be how my installer needs it, and I am still so lost by your programming style!!&nbsp; <img src="http://forum.driverpacks.net/img/smilies/smile.png" width="15" height="15" alt="smile" />&nbsp; I even went so far as to write a program to take your output and convert it to my output style, after an hour it worked for a fraction of the output and would freeze, so I said some bad words and walked away from it.&nbsp; I am currently using KickArse&#039;s FindHWIDS and reformatting the CSV output to meet my criteria, the results are a bit more thorough than mine but the output file grew a LOT since doing so, so it takes literally twice as long now to scan for matches.&nbsp; My method was:</p><p>Scan the INF for lines containing a &amp; or a {<br />Omit any matching lines that started with StringLower( hklm, exclude, classgui or proxy.clsid<br />Go through that line and try to trim it as much as possible to only contain the HWID, no comments or descriptions, etc</p><br /><p>Then I modified it by looking at your results and manually going through a few INF matching your results and made my newer way:</p><p>Scan the INF for any lines starting with %<br />Any line that contains a \ gets saved as a possible HWID<br />Go through that line and try to trim it as much as possible to only contain the HWID, no comments or descriptions, etc</p><p>Pretty crude.&nbsp; The output file for this was about 1.2MB with all packs and most 3rd party (no monitors, phones, a few other omissions).&nbsp; Using FindHWIDS the same set of drivers created a 12MBish CSV, using my parser I get a 2.4MB master HWID file.&nbsp; On one particular test machine my scanner only found 4 driver matches, the FindHWIDS-modified output file found 12 matches, though the only actual difference was that file found a match for the ethernet adapter that mine missed.&nbsp; I am still trying to find the &quot;right way&quot; to pluck out what is relevant, or even POSSIBLY relevant, with my own tool but due to the need to stop spending so much time developing and just get some images out, I decided to just use FindHWIDS for now.......&nbsp; But if possible I&#039;d like to go back to my own way, due to how I had to format the output from FindHWIDS versus my own scanner I know I can reduce that significantly, which will result in a big time saving.</p><br /><p>Anyway, thanks for the tip on Nvidia.ins, I&#039;ll take a peek at that and see what is has to offer!</p><p>Ian</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Fri, 20 Mar 2009 23:43:41 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30176#p30176</guid>
		</item>
		<item>
			<title><![CDATA[Re: how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30172#p30172</link>
			<description><![CDATA[<p>Look at the Nvidia.ins file <img src="http://forum.driverpacks.net/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>did you ever try my tool?</p>]]></description>
			<author><![CDATA[null@example.com (OverFlow)]]></author>
			<pubDate>Fri, 20 Mar 2009 21:01:10 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30172#p30172</guid>
		</item>
		<item>
			<title><![CDATA[how does Finisher nake nvcpl shut up?]]></title>
			<link>http://forum.driverpacks.net/viewtopic.php?pid=30164#p30164</link>
			<description><![CDATA[<p>When my image boots to the desktop for the first time my driver installer does it&#039;s thing, and since the nVidia control panel is (thankfully) not a part of the graphics packs, I get the &quot;RUNDLL32.EXE C:\WINDOWS\system32\NvCpl.dll,NvStartup&quot; error on boot.&nbsp; I have tried the following bits to try and make it not do that, but it keeps happening...</p><div class="codebox"><pre><code>regwrite(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvCplDaemon&quot;,&quot;REG_SZ&quot;,&quot;&quot;)
regwrite(&quot;HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvCplDaemon&quot;,&quot;REG_SZ&quot;,&quot;&quot;)
regdelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvCplDaemon&quot;)
regdelete(&quot;HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvCplDaemon&quot;)
regdelete(&quot;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvMediaCenter&quot;)
regdelete(&quot;HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run&quot;,&quot;NvMediaCenter&quot;)</code></pre></div><p>I found that RegDelete was not doing anything so tried the RegWrite &quot;&quot; trick, and I thought that would do it but nope.&nbsp; So then I tried one after the other, nope again.&nbsp; I&#039;m pretty flummoxed and can&#039;t find the right answers through Google, care to share how Finisher does it?</p><p>Thanks</p><p>Ian</p>]]></description>
			<author><![CDATA[null@example.com (llewxam)]]></author>
			<pubDate>Fri, 20 Mar 2009 14:57:08 +0000</pubDate>
			<guid>http://forum.driverpacks.net/viewtopic.php?pid=30164#p30164</guid>
		</item>
	</channel>
</rss>
