Guys, the same story with Windows 8.1 64-bit and latest beta driverpacks, provided by Bigfoot... Really have no ideas?
Anyone?

P.S. The same driverpacks with the same methods, that do not work in Windows 8.1, works well with the same editions of Windows 7( i mean 32-bit and 64-bit editions )

Guys, any ideas? Really?

Ok, I'll provide you some info - it's a very very very weird thing in Windows 8.1... Let's for now forget about sysprep and all that stuff. Here what i've done:
1. I've got one driver for example for Intel ICH10R AHCI Controller and put it in directory for example C:\Temp\Driver
2. Run Device manager, select the Standart AHCI Controller device, choose to update driver and pointed the search path for driver in C:\Temp\D directory
3. Driver installed successfully

But... I've done one more test. I've rolled back a standart driver, so it became Standart AHCI Controller device again. And what i've done:
1. I've got the SAME driver as in previous test and put it in directory C:\Windows\Inf\D
2. Run Device manager, select the Standart AHCI Controller device, choose to update driver and pointed the search path for driver in C:\Temp\D directory
3. Driver DO NOT installed.

For more can I say, it seems that it's finds the .inf file because Device Installation dialog provide device name from the inf, and tells me that it cannot find the file. So I guess it cannot find the .sys file in the same folder with inf.

And what I really do not understand why it find .sys if driver placed in C:\Temp\D and DO NOT find .sys if it placed in C:\Windows\Inf\D

Windows 8.1 simply refuses to install( manually or automatically ) any drivers, that placed in C:\Windows\inf subfolders... And I don't know really know why? I've spent whole day, playing with permissions for Users, SYSTEM, TrustedInstaller even a Local and Network Services( and setting owners to them )  on theese drivers' folders and files WITH NO LUCK. It simply refuses...

Guys, please any bit of info will be much appreciated

-------------------------------------------------------------------

And coming back to sysprepped image. Some news: if I place driverpacks for example in C:\D folder, and update "DevicePath" value in "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion" registry key to "%SystemRoot%\inf;%SystemDrive%\D" before sysprep, so after deploying obtained image on first boot Windows finally looks for drivers in "C:\Drivers" BUT...........................arrrrghhh ))))))))))))))))) NOT ALL OF THEM!!! just some of them are installed, for example Nvidia ION video driver...... and what is really weird - if i select a device in Device Manager, and choose to update it's driver, and select Windows try to automatically install driver for device ( without manually settig a path, so Windows uses paths from registry key "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion" DevicePath value ) IT FINDS DRIVERS AND INSTALLS IT without problems ( for example Intel ICH10R AHCI Controller as i've described in the beggining of the post, this drivers was not installed during system install but installs with no problem with manual update driver and automatic search for it)

So, it really blows my mind, and I don't know

Finally, I'm trying to get it work on Windows 8.1 32-bit with latest official driverpacks from offical download page, but I don't think it's due to newer System or an outdated or incompatible driver, because as i said - drivers installs and works correctly if you choose to update driver manually...

GUYZ HEEEEELP, my mind is blowing ))))))))))))

Hi there! I've got some troubles and really don't know what to do, and will appreciatie any info on this section:
Early, with Windows 7 distro we was able to copy all driverpacks we need into "C:\Windows\Inf" folder, for example i've created folder named "D" with all driverpacks and put it into "C:\Windows\Inf", after that i've made a sysprepped image, and after deploying that image windows 7 during install searched all the folder inside "C:\Windows\Inf", including my "D" folder, so all was fine and i've got fully installed hardware drivers after system installation finishes. By the way i've never integrated drivers using DISM

But now, with WIndows 8.1 distro it seems that this feature is gone. I'm putting "D" folder with driverpacks, making sysprepped image, deploying this image, but system somehow ignores my "D" folder, and no other driver seems to be installed, except drivers bultin into system distro.

Please could anyone put a comment on this situation or maybe put a link with info about how to make it work as with WIndows 7...

I've tried both Windows 8.1 x86 and x64 editions with the same result, driverpacks folder inside "C:\Windows\Inf" seems to be ignored. x86 driverpacks i've got from official driverpacks.net page, and x64 driverpacks were the ones, provided by bigfoot as beta, and the same driverpacks i've used with windows 7 and all was fine.

I suspect something changed, but do not understand what exaclty. PLEASE HELP smile

Well, maybe I'm wrong, but my suggestion is that SYSPREP masstorage drivers - is the same drivers, which integrates in the text-mode installation (F6 during text-setup), could please explain how can I get only XP drivers for text-mode install from the whole pack?
Or just give a little bit explanation of "... IfOS=", because "...disableIfOS=", "...skipIfOS=" are not very clear to me now

5

(13 replies, posted in Universal Imaging)

bigfoot wrote:

Glad it worked. As for the -clean, I have never got it to work. It should clean out the critical database list to the default list from xp + whatever storage controller is installed. I would just leave it alone. If you ever have to pull the hard drive out and place it in another (not exact config) computer, you will want those items in the database so you can boot. It could be a life/time saver.

Ok, here we go. I'll explain how to get "sysprep -clean" work, or maybe how it work for me, and will post some addition command line to clean out the rest of drivers.
The purpose - is to have fully cleaned up, after masstorage section got worked out.

How to make "sysprep -clean" work:
1. Go to the "SYSPREP" folder and create "I386" folder inside
2. Inside new "I386" create "$OEM$" folder
3. Inside new "$OEM$" folder create file "cmdlines.txt" with such content

[Commands]
"runonce.cmd"

4. Inside new "$OEM$" folder create file "runonce.cmd" with such content

SETLOCAL ENABLEDELAYEDEXPANSION
CHDIR /D "%SYSTEMDRIVE%\SYSPREP"
START "Sysprep Clean" /WAIT "SYSPREP.EXE" -clean
START "Pause" /MIN /WAIT "ping.exe" -n 10 localhost
ENDLOCAL

Ok, this must looks familiar to all of you, who deal with unattended install

After we done all of this, we go back to our SYSPREP folder, open up our SYSPREP.INF file and add/edit this section:

[Unattended]
InstallFilesPath = "C:\SYSPREP\I386"

Note, that you CAN NOT use environment variables in "InstallFilesPath" parameters

After all this done we will get our "runonce.cmd" launched on the final phase of Mini-Setup and sysprep will clean up unused drivers.

And some additional phase if you use this bigfoot's Driverpack. This batch will clean out unnecessary drivers, which are installed NOT DIRECTLY from sysprep Massstorage section, these were installed by the corresponding inf's and still took place in system after sysprep cleanup.
For less words here my "runonce.cmd" from thet step 4:

SETLOCAL ENABLEDELAYEDEXPANSION
:: Starting previously disable intellppm driver if Intel Processor found
ECHO %PROCESSOR_IDENTIFIER% | findstr.exe /I "intel"
IF "%ERRORLEVEL%" == "0" (sc.exe config intelppm start= system)
CHDIR /D "%SYSTEMDRIVE%\SYSPREP"
:: Starting Sysprep Clean
START "Sysprep Clean" /WAIT "SYSPREP.EXE" -clean
START "Pause" /MIN /WAIT "ping.exe" -n 10 localhost
:: Finishing driverpacks install
CHDIR /D "%SystemDrive%\"
START /WAIT /SEPARATE /HIGH "Driverpacks Finisher" "DPsFnshr.exe"
START "Pause" /MIN /WAIT "ping.exe" -n 10 localhost
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Cleaning up unnecessary drivers
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\fasttx2k" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x4] START "Delete Registry Value" /WAIT "reg.exe" DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "Ptipbmf" /f
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\ulsata2" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x4] (
	START "Delete Registry Value" /WAIT "reg.exe" DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "PtiuPbmd" /f
	FOR /F "tokens=3" %%i IN ('reg.exe QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" ^| FINDSTR "UpperFilters"') DO SET "UpperFilters=%%i"
	SET "UpperFilters=!UpperFilters:DontGo\0=!"
	SET "UpperFilters=!UpperFilters:\0\0=\0!" & SET "UpperFilters=!UpperFilters:\0\0=\0!"
	IF [!UpperFilters!]==[\0] (
		reg.exe DELETE "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /f
	) ELSE (
		reg.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /t "REG_MULTI_SZ" /d "!UpperFilters!" /f
	)	
	START "Disable Additional Service" /WAIT "sc.exe" CONFIG dontgo start= disabled
)
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\SI3112" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x4] (
	FOR /F "tokens=3" %%i IN ('reg.exe QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" ^| FINDSTR "UpperFilters"') DO SET "UpperFilters=%%i"
	SET "UpperFilters=!UpperFilters:SiRemFil\0=!"
	SET "UpperFilters=!UpperFilters:\0\0=\0!" & SET "UpperFilters=!UpperFilters:\0\0=\0!"
	IF [!UpperFilters!]==[\0] (
		reg.exe DELETE "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /f
	) ELSE (
		reg.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /t "REG_MULTI_SZ" /d "!UpperFilters!" /f
	)
	FOR /F "tokens=3" %%i IN ('reg.exe QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" ^| FINDSTR "UpperFilters"') DO SET "UpperFilters=%%i"
	SET "UpperFilters=!UpperFilters:SiRemFil\0=!"
	SET "UpperFilters=!UpperFilters:\0\0=\0!" & SET "UpperFilters=!UpperFilters:\0\0=\0!"
	IF [!UpperFilters!]==[\0] (
		reg.exe DELETE "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /f
	) ELSE (
		reg.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E965-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /t "REG_MULTI_SZ" /d "!UpperFilters!" /f
	)
	START "Disable Additional Service" /WAIT "sc.exe" CONFIG SiRemFil start= disabled
	START "Disable Additional Service" /WAIT "sc.exe" CONFIG SiFilter start= disabled
)
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\SI3114" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x0] START "Delete Additional Service" /WAIT "sc.exe" CONFIG SiFilter start= system
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\videX32" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x4] (
	FOR /F "tokens=3" %%i IN ('reg.exe QUERY "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" ^| FINDSTR "UpperFilters"') DO SET "UpperFilters=%%i"
	SET "UpperFilters=!UpperFilters:xfilt\0=!"
	SET "UpperFilters=!UpperFilters:\0\0=\0!" & SET "UpperFilters=!UpperFilters:\0\0=\0!"
	IF [!UpperFilters!]==[\0] (
		reg.exe DELETE "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /f
	) ELSE (
		reg.exe ADD "HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters" /t "REG_MULTI_SZ" /d "!UpperFilters!" /f
	)
	START "Disable Additional Service" /WAIT "sc.exe" CONFIG xfilt start= disabled
)
FOR /F "tokens=3" %%i IN ('reg.exe query "HKLM\SYSTEM\CurrentControlSet\Services\nvata" /v "Start" ^| FINDSTR "Start"') DO SET "DriverStartType=%%i"
IF [%DriverStartType%]==[0x4] (
	PUSHD "%SystemRoot%\system32"
	START "Uninstall Nvidia IDE" "nvuide.exe" Run nvide.nvu
	START "Pause" /MIN /WAIT "ping.exe" -n 10 localhost
	ERASE /F /Q nvide.nvu
	reg.exe DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\NVIDIA Drivers" /f
	POPD
)
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: End Cleaning section
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
ENDLOCAL

I'll explain as simple as I can what's going on in CLEANING section.
As soon as I got it right, sysprep is doing simple stuff in it's cleaup procedure it checks whether or not some of drivers, that were previously in sysprep masstorage section are in use, and if not - it just deletes the entry.
But some drivers install addition drivers with their inf's. These are:
fasttx2k - installs autorun section for it's dll "Ptipbmf"
ulsata2 - installs autorun section for it's dll "PtiuPbmd" and install it's dontgo.sys which is lately registred as upperfilter
SI3112 - install it's SiRemFil.sys which is lately registred as upperfilter, and install SiFilter
SI3114 - install SiFilter
nvata - install's additional software
Just be carefull these additional drivers my become registred as Upperfilters in HDD, CD sections and i think this should be cleanup. Well, you can use my batch, it's well tested and works fine. But currently i'm not delete entrys for these additional files just disable them for start. Keep working...

Thank you bigfoot for that pack, works like a charm, just dreamin about an update =) Or maybe just an explanation of how can I know which driver from DriverPack MassStorage section will work with XP sysprep masstorage, and which will not?

Hello there!

Guys could you please help me a bit, sometime ago BigFoot posted a DP MassStorage pack witch can be used with SYSPREP's MassStorage section, it is this thread.
I saw that most of drivers from Drivepacks Masstorage was removed from his pack.
Could you please help me identify which drivers from your new MassStorage pack I can use with Sysprep masstorage section?

The question is - how can I know which driver will work with XP sysprep masstorage, and which will not?

By the way, i'll post some info to this BigFoot's thread later

TechDud wrote:

May i have your permission to credit you in the changelog?

Of course you may, but I don't really care of it... Please, could you answer my question in this forum thread

TechDud wrote:

I look forward to crediting you in the changelog.

It's not necessary, really! I'm just glad to help you guys, because your work saves me so much time...
Finally I tried to deal with those inf's in your pack manually, and finally it works. Tested with ICH9 and ICH10 usb controllers, all installed succesfully. I've changed those files in your pack, so you can track the changes if you want:
ESB2usb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ESB2usb.inf                                            **
; **           Abstract: Windows* 2k & XP only INF File for                     **
; **                     Intel(R) USB devices                                   **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ESB2usb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_2688.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2688
%PCI\VEN_8086&DEV_2689.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2689
%PCI\VEN_8086&DEV_268A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_268A
%PCI\VEN_8086&DEV_268B.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_268B
%PCI\VEN_8086&DEV_268C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_268C


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_2688.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2688
%PCI\VEN_8086&DEV_2689.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2689
%PCI\VEN_8086&DEV_268A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_268A
%PCI\VEN_8086&DEV_268B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_268B
%PCI\VEN_8086&DEV_268C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_268C


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_2688.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2688
%PCI\VEN_8086&DEV_2689.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2689
%PCI\VEN_8086&DEV_268A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_268A
%PCI\VEN_8086&DEV_268B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_268B
%PCI\VEN_8086&DEV_268C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_268C


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_2688.DeviceDesc="Intel(R) 631xESB/6321ESB/3100 Chipset USB Universal Host Controller - 2688"
PCI\VEN_8086&DEV_2689.DeviceDesc="Intel(R) 631xESB/6321ESB/3100 Chipset USB Universal Host Controller - 2689"
PCI\VEN_8086&DEV_268A.DeviceDesc="Intel(R) 631xESB/6321ESB/3100 Chipset USB Universal Host Controller - 268A"
PCI\VEN_8086&DEV_268B.DeviceDesc="Intel(R) 631xESB/6321ESB/3100 Chipset USB Universal Host Controller - 268B"
PCI\VEN_8086&DEV_268C.DeviceDesc="Intel(R) 631xESB/6321ESB/3100 Chipset USB2 Enhanced Host Controller - 268C"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

ibexusb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ibexusb.inf                                            **
; **           Abstract: Windows* INF                                           **
; **                     File for Intel(R) 82801 USB devices                    **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ibexusb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NTx86.6.1,NTamd64,NTamd64.6.1

[INTEL]
%PCI\VEN_8086&DEV_3B34.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B34
%PCI\VEN_8086&DEV_3B36.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B36
%PCI\VEN_8086&DEV_3B37.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B37
%PCI\VEN_8086&DEV_3B38.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B38
%PCI\VEN_8086&DEV_3B39.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B39
%PCI\VEN_8086&DEV_3B3A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B3A
%PCI\VEN_8086&DEV_3B3B.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B3B
%PCI\VEN_8086&DEV_3B3C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B3C
%PCI\VEN_8086&DEV_3B3E.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B3E
%PCI\VEN_8086&DEV_3B3F.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B3F
%PCI\VEN_8086&DEV_3B40.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3B40


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_3B34.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B34
%PCI\VEN_8086&DEV_3B36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B36
%PCI\VEN_8086&DEV_3B37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B37
%PCI\VEN_8086&DEV_3B38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B38
%PCI\VEN_8086&DEV_3B39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B39
%PCI\VEN_8086&DEV_3B3A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3A
%PCI\VEN_8086&DEV_3B3B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3B
%PCI\VEN_8086&DEV_3B3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B3C
%PCI\VEN_8086&DEV_3B3E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3E
%PCI\VEN_8086&DEV_3B3F.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3F
%PCI\VEN_8086&DEV_3B40.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B40


[INTEL.NTx86.6.1]
%PCI\VEN_8086&DEV_3B34.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B34
%PCI\VEN_8086&DEV_3B36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B36
%PCI\VEN_8086&DEV_3B37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B37
%PCI\VEN_8086&DEV_3B38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B38
%PCI\VEN_8086&DEV_3B39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B39
%PCI\VEN_8086&DEV_3B3A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3A
%PCI\VEN_8086&DEV_3B3B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3B
%PCI\VEN_8086&DEV_3B3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B3C
%PCI\VEN_8086&DEV_3B3E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3E
%PCI\VEN_8086&DEV_3B3F.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3F
%PCI\VEN_8086&DEV_3B40.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B40


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_3B34.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B34
%PCI\VEN_8086&DEV_3B36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B36
%PCI\VEN_8086&DEV_3B37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B37
%PCI\VEN_8086&DEV_3B38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B38
%PCI\VEN_8086&DEV_3B39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B39
%PCI\VEN_8086&DEV_3B3A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3A
%PCI\VEN_8086&DEV_3B3B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3B
%PCI\VEN_8086&DEV_3B3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B3C
%PCI\VEN_8086&DEV_3B3E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3E
%PCI\VEN_8086&DEV_3B3F.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3F
%PCI\VEN_8086&DEV_3B40.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B40


[INTEL.NTamd64.6.1]
%PCI\VEN_8086&DEV_3B34.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B34
%PCI\VEN_8086&DEV_3B36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B36
%PCI\VEN_8086&DEV_3B37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B37
%PCI\VEN_8086&DEV_3B38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B38
%PCI\VEN_8086&DEV_3B39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B39
%PCI\VEN_8086&DEV_3B3A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3A
%PCI\VEN_8086&DEV_3B3B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3B
%PCI\VEN_8086&DEV_3B3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3B3C
%PCI\VEN_8086&DEV_3B3E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3E
%PCI\VEN_8086&DEV_3B3F.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B3F
%PCI\VEN_8086&DEV_3B40.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3B40


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_3B34.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B34"
PCI\VEN_8086&DEV_3B36.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B36"
PCI\VEN_8086&DEV_3B37.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B37"
PCI\VEN_8086&DEV_3B38.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B38"
PCI\VEN_8086&DEV_3B39.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B39"
PCI\VEN_8086&DEV_3B3A.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B3A"
PCI\VEN_8086&DEV_3B3B.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B3B"
PCI\VEN_8086&DEV_3B3C.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Enhanced Host Controller - 3B3C"
PCI\VEN_8086&DEV_3B3E.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B3E"
PCI\VEN_8086&DEV_3B3F.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B3F"
PCI\VEN_8086&DEV_3B40.DeviceDesc="Intel(R) 5 Series/3400 Series Chipset Family USB Universal Host Controller - 3B40"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

tcrkusb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: tcrkusb.inf                                            **
; **           Abstract: Intel(R) Platform Controller Hub EG20T                 **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=tcrkusb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_8804.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_8804
%PCI\VEN_8086&DEV_8805.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_8805
%PCI\VEN_8086&DEV_8806.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_8806
%PCI\VEN_8086&DEV_880C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_880C
%PCI\VEN_8086&DEV_880D.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_880D
%PCI\VEN_8086&DEV_880E.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_880E
%PCI\VEN_8086&DEV_8807.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_8807
%PCI\VEN_8086&DEV_880F.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_880F


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_8804.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8804
%PCI\VEN_8086&DEV_8805.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8805
%PCI\VEN_8086&DEV_8806.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8806
%PCI\VEN_8086&DEV_880C.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880C
%PCI\VEN_8086&DEV_880D.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880D
%PCI\VEN_8086&DEV_880E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880E
%PCI\VEN_8086&DEV_8807.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_8807
%PCI\VEN_8086&DEV_880F.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_880F


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_8804.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8804
%PCI\VEN_8086&DEV_8805.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8805
%PCI\VEN_8086&DEV_8806.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_8806
%PCI\VEN_8086&DEV_880C.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880C
%PCI\VEN_8086&DEV_880D.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880D
%PCI\VEN_8086&DEV_880E.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_880E
%PCI\VEN_8086&DEV_8807.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_8807
%PCI\VEN_8086&DEV_880F.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_880F


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_8804.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #4 - 8804"
PCI\VEN_8086&DEV_8805.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #5 - 8805"
PCI\VEN_8086&DEV_8806.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #6 - 8806"
PCI\VEN_8086&DEV_880C.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #1 - 880c - 880C"
PCI\VEN_8086&DEV_880D.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #2 - 880d - 880D"
PCI\VEN_8086&DEV_880E.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB OHCI Controller #3 - 880e - 880E"
PCI\VEN_8086&DEV_8807.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB2 EHCI Controller #2 - 8807"
PCI\VEN_8086&DEV_880F.DeviceDesc="Intel(R) Platform Controller Hub EG20T USB2 EHCI Controller #1 - 880f - 880F"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners

ich5usb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ich5usb.inf                                            **
; **           Abstract: Windows* 2000 and XP INF Update File for               **
; **                     Intel(R) 82801 USB devices                             **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ich5usb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NT.5.2,NT.6.0,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_24D2.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_24D2
%PCI\VEN_8086&DEV_24D4.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_24D4
%PCI\VEN_8086&DEV_24D7.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_24D7
%PCI\VEN_8086&DEV_24DE.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_24DE
%PCI\VEN_8086&DEV_24DD.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_24DD
%PCI\VEN_8086&DEV_25A9.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_25A9
%PCI\VEN_8086&DEV_25AA.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_25AA
%PCI\VEN_8086&DEV_25AD.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_25AD


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_24D2.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D2
%PCI\VEN_8086&DEV_24D4.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D4
%PCI\VEN_8086&DEV_24D7.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D7
%PCI\VEN_8086&DEV_24DE.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24DE
%PCI\VEN_8086&DEV_24DD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_24DD
%PCI\VEN_8086&DEV_25A9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25A9
%PCI\VEN_8086&DEV_25AA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25AA
%PCI\VEN_8086&DEV_25AD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_25AD


[INTEL.NT.5.2]
%PCI\VEN_8086&DEV_24D2.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D2
%PCI\VEN_8086&DEV_24D4.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D4
%PCI\VEN_8086&DEV_24D7.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D7
%PCI\VEN_8086&DEV_24DE.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24DE
%PCI\VEN_8086&DEV_25A9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25A9
%PCI\VEN_8086&DEV_25AA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25AA
%PCI\VEN_8086&DEV_24DD.DeviceDesc%=Intel_USB2_2K3.NT,PCI\VEN_8086&DEV_24DD
%PCI\VEN_8086&DEV_25AD.DeviceDesc%=Intel_USB2_2K3.NT,PCI\VEN_8086&DEV_25AD


[INTEL.NT.6.0]
%PCI\VEN_8086&DEV_24D2.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D2
%PCI\VEN_8086&DEV_24D4.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D4
%PCI\VEN_8086&DEV_24D7.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D7
%PCI\VEN_8086&DEV_24DE.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24DE
%PCI\VEN_8086&DEV_24DD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_24DD
%PCI\VEN_8086&DEV_25A9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25A9
%PCI\VEN_8086&DEV_25AA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25AA
%PCI\VEN_8086&DEV_25AD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_25AD


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_24D2.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D2
%PCI\VEN_8086&DEV_24D4.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D4
%PCI\VEN_8086&DEV_24D7.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24D7
%PCI\VEN_8086&DEV_24DE.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_24DE
%PCI\VEN_8086&DEV_24DD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_24DD
%PCI\VEN_8086&DEV_25A9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25A9
%PCI\VEN_8086&DEV_25AA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_25AA
%PCI\VEN_8086&DEV_25AD.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_25AD


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Intel_USB2_2K3.NT]
Include=usbport.inf
AddReg=EHCI.AddReg.NT
CopyFiles=EHCI.CopyFiles.NT,USBUI.CopyFiles.NT,USB.CopyFiles.NT,HCCOIN.CopyFiles.NT
DelFiles=USB.DelFiles.NT ; HCCOIN.Delfiles.NT
Needs=EHCI.Dev.NT

[Intel_USB2_2K3.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_USB2_2K3.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_24D2.DeviceDesc="Intel(R) 82801EB USB Universal Host Controller - 24D2"
PCI\VEN_8086&DEV_24D4.DeviceDesc="Intel(R) 82801EB USB Universal Host Controller - 24D4"
PCI\VEN_8086&DEV_24D7.DeviceDesc="Intel(R) 82801EB USB Universal Host Controller - 24D7"
PCI\VEN_8086&DEV_24DE.DeviceDesc="Intel(R) 82801EB USB Universal Host Controller - 24DE"
PCI\VEN_8086&DEV_24DD.DeviceDesc="Intel(R) 82801EB USB2 Enhanced Host Controller - 24DD"
PCI\VEN_8086&DEV_25A9.DeviceDesc="Intel(R) 6300ESB USB Universal Host Controller - 25A9"
PCI\VEN_8086&DEV_25AA.DeviceDesc="Intel(R) 6300ESB USB Universal Host Controller - 25AA"
PCI\VEN_8086&DEV_25AD.DeviceDesc="Intel(R) 6300ESB USB2 Enhanced Host Controller - 25AD"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

ich6usb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ich6usb.inf                                            **
; **           Abstract: Windows* 2000 and XP INF Update File for               **
; **                     Intel(R) 82801 USB devices                             **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ich6usb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NT.5.2,NT.6.0,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_2658.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2658
%PCI\VEN_8086&DEV_2659.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2659
%PCI\VEN_8086&DEV_265A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_265A
%PCI\VEN_8086&DEV_265B.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_265B
%PCI\VEN_8086&DEV_265C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_265C


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_2658.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2658
%PCI\VEN_8086&DEV_2659.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2659
%PCI\VEN_8086&DEV_265A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265A
%PCI\VEN_8086&DEV_265B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265B
%PCI\VEN_8086&DEV_265C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_265C


[INTEL.NT.5.2]
%PCI\VEN_8086&DEV_2658.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2658
%PCI\VEN_8086&DEV_2659.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2659
%PCI\VEN_8086&DEV_265A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265A
%PCI\VEN_8086&DEV_265B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265B
%PCI\VEN_8086&DEV_265C.DeviceDesc%=Intel_USB2_2K3.NT,PCI\VEN_8086&DEV_265C


[INTEL.NT.6.0]
%PCI\VEN_8086&DEV_2658.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2658
%PCI\VEN_8086&DEV_2659.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2659
%PCI\VEN_8086&DEV_265A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265A
%PCI\VEN_8086&DEV_265B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265B
%PCI\VEN_8086&DEV_265C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_265C


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_2658.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2658
%PCI\VEN_8086&DEV_2659.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2659
%PCI\VEN_8086&DEV_265A.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265A
%PCI\VEN_8086&DEV_265B.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_265B
%PCI\VEN_8086&DEV_265C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_265C


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Intel_USB2_2K3.NT]
Include=usbport.inf
AddReg=EHCI.AddReg.NT
CopyFiles=EHCI.CopyFiles.NT,USBUI.CopyFiles.NT,USB.CopyFiles.NT,HCCOIN.CopyFiles.NT
DelFiles=USB.DelFiles.NT ; HCCOIN.Delfiles.NT
Needs=EHCI.Dev.NT

[Intel_USB2_2K3.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_USB2_2K3.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_2658.DeviceDesc="Intel(R) 82801FB/FBM USB Universal Host Controller - 2658"
PCI\VEN_8086&DEV_2659.DeviceDesc="Intel(R) 82801FB/FBM USB Universal Host Controller - 2659"
PCI\VEN_8086&DEV_265A.DeviceDesc="Intel(R) 82801FB/FBM USB Universal Host Controller - 265A"
PCI\VEN_8086&DEV_265B.DeviceDesc="Intel(R) 82801FB/FBM USB Universal Host Controller - 265B"
PCI\VEN_8086&DEV_265C.DeviceDesc="Intel(R) 82801FB/FBM USB2 Enhanced Host Controller - 265C"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

ich78usb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ich78usb.inf                                           **
; **           Abstract: Windows* INF Update File                               **
; **                     Intel(R) 82801 USB devices                             **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ich78usb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NT.6.0,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_27C8.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_27C8
%PCI\VEN_8086&DEV_27C9.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_27C9
%PCI\VEN_8086&DEV_27CA.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_27CA
%PCI\VEN_8086&DEV_27CB.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_27CB
%PCI\VEN_8086&DEV_27CC.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_27CC
%PCI\VEN_8086&DEV_2830.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2830
%PCI\VEN_8086&DEV_2831.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2831
%PCI\VEN_8086&DEV_2832.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2832
%PCI\VEN_8086&DEV_2834.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2834
%PCI\VEN_8086&DEV_2835.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2835
%PCI\VEN_8086&DEV_2836.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2836
%PCI\VEN_8086&DEV_283A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_283A


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_27C8.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C8
%PCI\VEN_8086&DEV_27C9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C9
%PCI\VEN_8086&DEV_27CA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CA
%PCI\VEN_8086&DEV_27CB.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CB
%PCI\VEN_8086&DEV_27CC.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_27CC
%PCI\VEN_8086&DEV_2830.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2830
%PCI\VEN_8086&DEV_2831.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2831
%PCI\VEN_8086&DEV_2832.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2832
%PCI\VEN_8086&DEV_2834.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2834
%PCI\VEN_8086&DEV_2835.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2835
%PCI\VEN_8086&DEV_2836.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_2836
%PCI\VEN_8086&DEV_283A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_283A


[INTEL.NT.6.0]
%PCI\VEN_8086&DEV_27C8.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C8
%PCI\VEN_8086&DEV_27C9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C9
%PCI\VEN_8086&DEV_27CA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CA
%PCI\VEN_8086&DEV_27CB.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CB
%PCI\VEN_8086&DEV_27CC.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_27CC
%PCI\VEN_8086&DEV_2830.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2830
%PCI\VEN_8086&DEV_2831.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2831
%PCI\VEN_8086&DEV_2832.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2832
%PCI\VEN_8086&DEV_2834.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2834
%PCI\VEN_8086&DEV_2835.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2835
%PCI\VEN_8086&DEV_2836.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_2836
%PCI\VEN_8086&DEV_283A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_283A


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_27C8.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C8
%PCI\VEN_8086&DEV_27C9.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27C9
%PCI\VEN_8086&DEV_27CA.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CA
%PCI\VEN_8086&DEV_27CB.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_27CB
%PCI\VEN_8086&DEV_27CC.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_27CC
%PCI\VEN_8086&DEV_2830.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2830
%PCI\VEN_8086&DEV_2831.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2831
%PCI\VEN_8086&DEV_2832.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2832
%PCI\VEN_8086&DEV_2834.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2834
%PCI\VEN_8086&DEV_2835.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2835
%PCI\VEN_8086&DEV_2836.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_2836
%PCI\VEN_8086&DEV_283A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_283A


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_27C8.DeviceDesc="Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8"
PCI\VEN_8086&DEV_27C9.DeviceDesc="Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9"
PCI\VEN_8086&DEV_27CA.DeviceDesc="Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA"
PCI\VEN_8086&DEV_27CB.DeviceDesc="Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB"
PCI\VEN_8086&DEV_27CC.DeviceDesc="Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC"
PCI\VEN_8086&DEV_2830.DeviceDesc="Intel(R) ICH8 Family USB Universal Host Controller - 2830"
PCI\VEN_8086&DEV_2831.DeviceDesc="Intel(R) ICH8 Family USB Universal Host Controller - 2831"
PCI\VEN_8086&DEV_2832.DeviceDesc="Intel(R) ICH8 Family USB Universal Host Controller - 2832"
PCI\VEN_8086&DEV_2834.DeviceDesc="Intel(R) ICH8 Family USB Universal Host Controller - 2834"
PCI\VEN_8086&DEV_2835.DeviceDesc="Intel(R) ICH8 Family USB Universal Host Controller - 2835"
PCI\VEN_8086&DEV_2836.DeviceDesc="Intel(R) ICH8 Family USB2 Enhanced Host Controller - 2836"
PCI\VEN_8086&DEV_283A.DeviceDesc="Intel(R) ICH8 Family USB2 Enhanced Host Controller - 283A"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

ich9usb.inf

; ********************************************************************************
; ********************************************************************************
; **           FileName: ich9usb.inf                                            **
; **           Abstract: Windows* 2000 and XP, 2003 Server, 2008 server, and    **
; **                     Vista INF File for                                     **
; **                     Intel(R) 82801 USB devices                             **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ich9usb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_2934.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2934
%PCI\VEN_8086&DEV_2935.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2935
%PCI\VEN_8086&DEV_2936.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2936
%PCI\VEN_8086&DEV_2937.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2937
%PCI\VEN_8086&DEV_2938.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2938
%PCI\VEN_8086&DEV_2939.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_2939
%PCI\VEN_8086&DEV_293A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_293A
%PCI\VEN_8086&DEV_293C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_293C


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_2934.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2934
%PCI\VEN_8086&DEV_2935.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2935
%PCI\VEN_8086&DEV_2936.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2936
%PCI\VEN_8086&DEV_2937.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2937
%PCI\VEN_8086&DEV_2938.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2938
%PCI\VEN_8086&DEV_2939.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2939
%PCI\VEN_8086&DEV_293A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293A
%PCI\VEN_8086&DEV_293C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293C


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_2934.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2934
%PCI\VEN_8086&DEV_2935.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2935
%PCI\VEN_8086&DEV_2936.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2936
%PCI\VEN_8086&DEV_2937.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2937
%PCI\VEN_8086&DEV_2938.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2938
%PCI\VEN_8086&DEV_2939.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_2939
%PCI\VEN_8086&DEV_293A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293A
%PCI\VEN_8086&DEV_293C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293C


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_2934.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2934"
PCI\VEN_8086&DEV_2935.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2935"
PCI\VEN_8086&DEV_2936.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2936"
PCI\VEN_8086&DEV_2937.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2937"
PCI\VEN_8086&DEV_2938.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2938"
PCI\VEN_8086&DEV_2939.DeviceDesc="Intel(R) ICH9 Family USB Universal Host Controller - 2939"
PCI\VEN_8086&DEV_293A.DeviceDesc="Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A"
PCI\VEN_8086&DEV_293C.DeviceDesc="Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

ichausb.inf

; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************
; **           FileName: ichausb.inf                                            **
; **           Abstract: Windows* 2000 and XP INF, 2003 Server INF, Vista Update File for**
; **                     Intel(R) 82801 USB devices                             **
; **        Last Update: July 31, 2013 (Version 9.1.9 Build 1006)               **
; ********************************************************************************
; ********************************************************************************


[Version]
Signature="$WINDOWS NT$"
Class=USB
ClassGUID={36FC9E60-C465-11CF-8056-444553540000}
Provider=%INTEL%
CatalogFile=ichausb.cat
DriverVer=07/31/2013, 9.1.9.1006

[SourceDisksNames]

[SourceDisksFiles]

[ControlFlags]
ExcludeFromSelect=*

[PackageInfo]
Name=Chipset
Condition=Provider(Microsoft)||InstalledDriverName(Chipset)||Provider()

[Manufacturer]
%INTEL%=INTEL,NT.5.1,NTamd64

[INTEL]
%PCI\VEN_8086&DEV_3A64.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A64
%PCI\VEN_8086&DEV_3A65.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A65
%PCI\VEN_8086&DEV_3A66.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A66
%PCI\VEN_8086&DEV_3A67.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A67
%PCI\VEN_8086&DEV_3A68.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A68
%PCI\VEN_8086&DEV_3A69.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A69
%PCI\VEN_8086&DEV_3A6A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A6A
%PCI\VEN_8086&DEV_3A6C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A6C
%PCI\VEN_8086&DEV_3A34.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A34
%PCI\VEN_8086&DEV_3A35.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A35
%PCI\VEN_8086&DEV_3A36.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A36
%PCI\VEN_8086&DEV_3A37.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A37
%PCI\VEN_8086&DEV_3A38.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A38
%PCI\VEN_8086&DEV_3A39.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A39
%PCI\VEN_8086&DEV_3A3A.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A3A
%PCI\VEN_8086&DEV_3A3C.DeviceDesc%=Intel_UniversalHCD.Dev.NT,PCI\VEN_8086&DEV_3A3C


[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_3A64.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A64
%PCI\VEN_8086&DEV_3A65.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A65
%PCI\VEN_8086&DEV_3A66.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A66
%PCI\VEN_8086&DEV_3A67.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A67
%PCI\VEN_8086&DEV_3A68.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A68
%PCI\VEN_8086&DEV_3A69.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A69
%PCI\VEN_8086&DEV_3A6A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A6A
%PCI\VEN_8086&DEV_3A6C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A6C
%PCI\VEN_8086&DEV_3A34.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A34
%PCI\VEN_8086&DEV_3A35.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A35
%PCI\VEN_8086&DEV_3A36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A36
%PCI\VEN_8086&DEV_3A37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A37
%PCI\VEN_8086&DEV_3A38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A38
%PCI\VEN_8086&DEV_3A39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A39
%PCI\VEN_8086&DEV_3A3A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A3A
%PCI\VEN_8086&DEV_3A3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A3C


[INTEL.NTamd64]
%PCI\VEN_8086&DEV_3A64.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A64
%PCI\VEN_8086&DEV_3A65.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A65
%PCI\VEN_8086&DEV_3A66.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A66
%PCI\VEN_8086&DEV_3A67.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A67
%PCI\VEN_8086&DEV_3A68.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A68
%PCI\VEN_8086&DEV_3A69.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A69
%PCI\VEN_8086&DEV_3A6A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A6A
%PCI\VEN_8086&DEV_3A6C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A6C
%PCI\VEN_8086&DEV_3A34.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A34
%PCI\VEN_8086&DEV_3A35.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A35
%PCI\VEN_8086&DEV_3A36.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A36
%PCI\VEN_8086&DEV_3A37.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A37
%PCI\VEN_8086&DEV_3A38.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A38
%PCI\VEN_8086&DEV_3A39.DeviceDesc%=Intel_UHCI.Dev.NT,PCI\VEN_8086&DEV_3A39
%PCI\VEN_8086&DEV_3A3A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A3A
%PCI\VEN_8086&DEV_3A3C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_3A3C


[Intel_UniversalHCD.Dev.NT]
Include=usb.inf
Needs=UniversalHCD.Dev.NT

[Intel_UniversalHCD.Dev.NT.Services]
Include=usb.inf
Needs=UniversalHCD.Dev.NT.Services

[Intel_UHCI.Dev.NT]
Include=usbport.inf
Needs=UHCI.Dev.NT

[Intel_UHCI.Dev.NT.Services]
Include=usbport.inf
Needs=UHCI.Dev.NT.Services

[Intel_UHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=UHCI.Dev.NT.CoInstallers

[Intel_EHCI.Dev.NT]
Include=usbport.inf
Needs=EHCI.Dev.NT

[Intel_EHCI.Dev.NT.Services]
Include=usbport.inf
Needs=EHCI.Dev.NT.Services

[Intel_EHCI.Dev.NT.CoInstallers]
Include=usbport.inf
Needs=EHCI.Dev.NT.CoInstallers

[Strings]
INTEL="Intel"
PCI\VEN_8086&DEV_3A64.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A64"
PCI\VEN_8086&DEV_3A65.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A65"
PCI\VEN_8086&DEV_3A66.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A66"
PCI\VEN_8086&DEV_3A67.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A67"
PCI\VEN_8086&DEV_3A68.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A68"
PCI\VEN_8086&DEV_3A69.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A69"
PCI\VEN_8086&DEV_3A6A.DeviceDesc="Intel(R) ICH10 Family USB Enhanced Host Controller - 3A6A"
PCI\VEN_8086&DEV_3A6C.DeviceDesc="Intel(R) ICH10 Family USB Enhanced Host Controller - 3A6C"
PCI\VEN_8086&DEV_3A34.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A34"
PCI\VEN_8086&DEV_3A35.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A35"
PCI\VEN_8086&DEV_3A36.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A36"
PCI\VEN_8086&DEV_3A37.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A37"
PCI\VEN_8086&DEV_3A38.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A38"
PCI\VEN_8086&DEV_3A39.DeviceDesc="Intel(R) ICH10 Family USB Universal Host Controller - 3A39"
PCI\VEN_8086&DEV_3A3A.DeviceDesc="Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A"
PCI\VEN_8086&DEV_3A3C.DeviceDesc="Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C"
REG_DWORD =0x00010001


; Copyright (c) 2003-2013 Intel Corporation
; 
; ********************************************************************************
; Intel is making no claims of usability, efficacy or warranty.
; ********************************************************************************
; Information in this document is provided in connection with Intel products. No
; license, express or implied, by estoppel or otherwise, to any intellectual
; property rights is granted by this document. Intel assumes no liability
; whatsoever, and Intel disclaims any express or implied warranty, relating to
; sale and/or use of Intel products including liability or warranties relating to
; fitness for a particular purpose, merchantability, or infringement of any
; patent, copyright or other intellectual property right. Intel products are not
; intended for use in medical, life saving, or life sustaining applications.
; ********************************************************************************
; Intel Corporation disclaims all warranties and liabilities for the use of this
; document and the information contained herein, and assumes no responsibility for
; any errors which may appear in this document, nor does Intel make a commitment
; to update the information contained herein. Intel reserves the right to make
; changes to this document at any time, without notice.
; ********************************************************************************
; ********************************************************************************
; 
; * Third-party brands and names are the property of their respective owners.

There is a maybe a bug in intel chipset driver:
Few days trying to install with the latest DP and got that Intel's "Intel(R) ICH9 Family USB Universal Host Controller" does not installed properly on XP, manual installation didn't work so...
So I've investigated the inf's and found intresting place in ich9usb.inf:
[INTEL.NT.5.1]
%PCI\VEN_8086&DEV_2934.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2934
%PCI\VEN_8086&DEV_2935.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2935
%PCI\VEN_8086&DEV_2936.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2936
%PCI\VEN_8086&DEV_2937.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2937
%PCI\VEN_8086&DEV_2938.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2938
%PCI\VEN_8086&DEV_2939.DeviceDesc%=Intel_OHCI.Dev.NT.Services,PCI\VEN_8086&DEV_2939
%PCI\VEN_8086&DEV_293A.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293A
%PCI\VEN_8086&DEV_293C.DeviceDesc%=Intel_EHCI.Dev.NT,PCI\VEN_8086&DEV_293C

It's a bug or a mistake, or maybe just a mistype, but it's confirmed not just by me. Just look here:
https://communities.intel.com/message/202181

And this bug for several inf files, all of them you can find in posts of the above link

It's strange that Intel didn't fix that till now v9.4 of Chipset Installation Utility

I think it's important, and guys from NT6 branch of DriverPacks.net should be awared to, because posts of the above link says that not only XP drivers are affected, but Win 7 too.

Just tell me if you not contact with NT6 branch buy from this forum, i'll post for them manually

By the way, thank you for your GREAT work TechDud

I don't think nt5 Sysprep sucks, it has only two problems, their names are: HAL and Custom HDD Controller ( AHCI etc. )
HAL problem can be solved having custom images of installed OS for custom processors.
So I have separate three categories:
1. Multi-core and Uni-core processors with multi-threading
2. Uni-core processors without multi-threading
3. Multiple proccessors
For each category except 2 you'll find proper HAL settings for SYSPREP.INF in official manuals for sysprep from microsoft.
In case of 2. Uni-core processors without multi-threading - you DO NOT NEED to write any HAL strings into sysprep.inf

And we have three popular vendors of processors:
1. Intel
2. AMD
3. Cyrix

So usually I make fully silent setup cd, install it on one computer from each category and vendor, make sysprep and image of %SystemDrive% and after that everytime and everywhere all is fine. Just look at target machine processor and deploy the proper image. 9 images for whole world smile

Custom HDD Controller is problem but it can be solved editing target machine registry offline after deploy.
In case of hundred of identical computers just make the master image with HDD controller driver integrated WITH SYSPREP just like OverFlow said in previous post.

11

(109 replies, posted in Universal Imaging)

triplej057 wrote:

I cannot get any version of Linux "Live CD" or any other type of boot tools to actually load on the computer.

You can try boot cd based on Windows with RAID/AHCI mode turned on and launch utility like SaveHWIDS.exe after it boots up.
There some boot cds that can be used:
Active Boot CD 5 ( Vista )
Windows ERD Commander 6.5 ( Seven )
Windows ERD Commander 6.0 ( Vista )
Windows ERD Commander 5.0 ( XP )
Never saw it can't boot. Windows ERD Commander now is part of Microsoft Desktop Optimization Pack.

12

(109 replies, posted in Universal Imaging)

triple057 wrote:

I have finally found the time to revisit this process, but like many others, I cannot get AHCI images (after sysprep) to load on any other computers besides the host computer where the image was made. Both test computers use Intel IAstor.sys or similar Intel Mass Storage / AHCI controller, yet it still does not work, and crashes on boot with error 7B.

Please pay attention to this post. If you want to boot from AHCI controller you'll have to put text string with target controller's HWID and it's related driver into [SysprepMassStorage] section of SYSPREP.INF file. No automatic way yet.

13

(109 replies, posted in Universal Imaging)

Yes, my mistake! Just hurried to post that and don't even mention that all other hwids and devices supposed to be fine.
I was looking at how DpsFnshr.exe works and found that it don't resets the DevicePath value.

Thing about Nvidia hwid is the result of not clear understanding of how hwid relate to id in driver's .inf-file.
For example when I launch FindHWIDS - I've got 4 Hardware ID's for Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26

PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD
    Name: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
    Hardware ID's:
        PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00
        PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043
        PCI\VEN_8086&DEV_3A26&CC_010185
        PCI\VEN_8086&DEV_3A26&CC_0101

The latest can be found in .inf-file. But in case of Video Card - there is only 1 hwid:

PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+

Therefore I've decided something going wrong. Sorry for off-topic.

Somebody, please update your 1st post in this topic where the HOWTO described. Details below:
There is a special mode of installing Windows XP when you want to do the sysprep. It's called Factory Mode.
So if you going to sysprep the system you need to update Unattened.txt file( answer file for Windows setup, not sysprep, it also known as WINNT.SIF ) putting this setting in this section:

[Unattended]
FactoryMode = Yes

After that every time system boots up it will display the Sysprep dialog, you may reboot, shutdown or doing something else, It will display again on every reboot. I don't pretty sure that it's all that this setting do, for example if I try to connect USB flash or something like that - device do not appears in system, but it appears if the device connected before booting up the system and device detected and configured via BIOS. I think this setting also blocks some Plug And Play features, leaving system "more clean" before sysprep. Anyway it's working, but you have to place folder named SYSPREP with SYSPREP contents in root of %SystemDrive%, i.e. C:\SYSPREP, you can achieve this automatically placing SYSPREP folder in "$OEM$\$1" folder of the install CD.

Please correct me if I'm wrong - DpsFnshr installs the contents( stuff like configuring software & tray apps ) that belongs to drivers and do not installs with .inf-file directives.
DpsFnshr.exe creates file "hwids.dat" on C:\ and deletes it after exit. I've caugth this file hour ago and looked inside. Here is the contents

ACPI\ATK0110\1010110                                        : ATK0110 ACPI UTILITY
ACPI\FIXEDBUTTON\2&DABA3FF&0                                : ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_0                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_1                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\INT0800\4&2BC541BA&0                                   : Intel(R) 82802 Firmware ACPI\PNP0000\4&2BC541BA&0                                   : ACPI\PNP0100\4&2BC541BA&0                                   : ACPI\PNP0103\4&2BC541BA&0                                   : High Precision Event Timer
ACPI\PNP0200\4&2BC541BA&0                                   : ACPI\PNP0501\1                                              : ACPI\PNP0800\4&2BC541BA&0                                   : ACPI\PNP0A08\0                                              : ACPI\PNP0B00\4&2BC541BA&0                                   : CMOS ACPI\PNP0C01\1                                              : ACPI\PNP0C01\A                                              : ACPI\PNP0C02\0                                              : ACPI\PNP0C02\10                                             : ACPI\PNP0C02\11                                             : ACPI\PNP0C02\2E                                             : ACPI\PNP0C02\3                                              : ACPI\PNP0C04\4&2BC541BA&0                                   : ACPI\PNP0C0C\AA                                             : ACPI_HAL\PNP0C08\0                                          : Microsoft ACPI-DISPLAY\ACR004C\5&3A2B6592&0&11335577&01&00                 : DTSOFTBUS&REV1\DTCDROM&REV1\1&2D12BED1&0&00                 : DTSoftBusCd00
HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438311&REV_1003\4&21B9C98F&0&0001: SoundMAX Integrated Digital HD Audio
HID\VID_045E&PID_0745&MI_00\7&369EE6A&0&0000                : Microsoft USB Dual Receiver Wireless Keyboard (IntelliType Pro)
HID\VID_045E&PID_0745&MI_01&COL01\7&1B2D7AAF&0&0000         : Microsoft USB Dual Receiver Wireless Mouse (IntelliPoint)
HID\VID_045E&PID_0745&MI_01&COL02\7&1B2D7AAF&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL01\7&32F106F4&0&0000         : HID-HID\VID_045E&PID_0745&MI_02&COL02\7&32F106F4&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL03\7&32F106F4&0&0002         : HID-HID\VID_045E&PID_0745&MI_02&COL04\7&32F106F4&0&0003         : HID-IDE\CDROMOPTIARC_DVD_RW_AD-7243S_________________1.01____\5&5C6CFD6&0&0.1.0: Optiarc DVD RW AD-7243S
ISAPNP\READDATAPORT\0                                       : PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+
PCI\VEN_11AB&DEV_4320&SUBSYS_811A1043&REV_14\4&31B6CD7&0&10F0: Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&20515DB1&0&00E5: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B1\4&34EBACD6&0&00E4: Marvell 61xx RAID Controller
PCI\VEN_11C1&DEV_5811&SUBSYS_82941043&REV_70\4&31B6CD7&0&18F0: OHCI-PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_90\3&11583659&0&F0: Intel(R) 82801 PCI Bridge - 244E
PCI\VEN_8086&DEV_2E20&SUBSYS_00000000&REV_03\3&11583659&0&00: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E20
PCI\VEN_8086&DEV_2E21&SUBSYS_00000000&REV_03\3&11583659&0&08: Intel(R) 4 Series Chipset PCI Express Root Port - 2E21
PCI\VEN_8086&DEV_3A16&SUBSYS_00000000&REV_00\3&11583659&0&F8: Intel(R) ICH10R LPC Interface Controller - 3A16
PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00\3&11583659&0&FA: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
PCI\VEN_8086&DEV_3A30&SUBSYS_82D41043&REV_00\3&11583659&0&FB: Intel(R) ICH10 Family SMBus Controller - 3A30
PCI\VEN_8086&DEV_3A34&SUBSYS_82D41043&REV_00\3&11583659&0&E8: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
PCI\VEN_8086&DEV_3A35&SUBSYS_82D41043&REV_00\3&11583659&0&E9: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
PCI\VEN_8086&DEV_3A36&SUBSYS_82D41043&REV_00\3&11583659&0&EA: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
PCI\VEN_8086&DEV_3A37&SUBSYS_82D41043&REV_00\3&11583659&0&D0: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
PCI\VEN_8086&DEV_3A38&SUBSYS_82D41043&REV_00\3&11583659&0&D1: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
PCI\VEN_8086&DEV_3A39&SUBSYS_82D41043&REV_00\3&11583659&0&D2: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
PCI\VEN_8086&DEV_3A3A&SUBSYS_82D41043&REV_00\3&11583659&0&EF: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
PCI\VEN_8086&DEV_3A3C&SUBSYS_82D41043&REV_00\3&11583659&0&D7: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
PCI\VEN_8086&DEV_3A3E&SUBSYS_83111043&REV_00\3&11583659&0&D8: PCI\VEN_8086&DEV_3A40&SUBSYS_00000000&REV_00\3&11583659&0&E0: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
PCI\VEN_8086&DEV_3A48&SUBSYS_00000000&REV_00\3&11583659&0&E4: Intel(R) ICH10 Family PCI Express Root Port 5 - 3A48
PCI\VEN_8086&DEV_3A4A&SUBSYS_00000000&REV_00\3&11583659&0&E5: Intel(R) ICH10 Family PCI Express Root Port 6 - 3A4A
PCIIDE\IDECHANNEL\4&3189A216&0&0                            : PCIIDE\IDECHANNEL\4&3189A216&0&1                            : PCIIDE\IDECHANNEL\4&38D74911&0&0                            : PCIIDE\IDECHANNEL\4&38D74911&0&1                            : ROOT\ACPI_HAL\0000                                          : ROOT\CNTX_VPCNETS2_MP\0000                                  : 802.11n Network Adapter - Virtual Machine Network Services Driver
ROOT\CNTX_VPCNETS2_MP\0001                                  : Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller - Virtual Machine Network Services Driver
ROOT\CNTX_VPCNETS2_MP\0002                                  : Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller - Virtual Machine Network Services Driver
ROOT\DMIO\0000                                              : ROOT\FTDISK\0000                                            : ROOT\LEGACY_ABP480N5\0000                                   : abp480n5
ROOT\LEGACY_ADPU160M\0000                                   : adpu160m
ROOT\LEGACY_AFD\0000                                        : AFD
ROOT\LEGACY_AGP440\0000                                     : Intel - ROOT\LEGACY_AGPCPQ\0000                                     : Compaq - ROOT\LEGACY_AHA154X\0000                                    : Aha154x
ROOT\LEGACY_AIC78U2\0000                                    : aic78u2
ROOT\LEGACY_AIC78XX\0000                                    : aic78xx
ROOT\LEGACY_ALIIDE\0000                                     : AliIde
ROOT\LEGACY_ALIM1541\0000                                   : ALI - ROOT\LEGACY_AMDAGP\0000                                     : AMD - ROOT\LEGACY_AMSINT\0000                                     : amsint
ROOT\LEGACY_ARP1394\0000                                    : ROOT\LEGACY_ASC\0000                                        : asc
ROOT\LEGACY_ASC3350P\0000                                   : asc3350p
ROOT\LEGACY_ASC3550\0000                                    : asc3550
ROOT\LEGACY_BEEP\0000                                       : Beep
ROOT\LEGACY_CBIDF\0000                                      : cbidf
ROOT\LEGACY_CD20XRNT\0000                                   : cd20xrnt
ROOT\LEGACY_CMDIDE\0000                                     : CmdIde
ROOT\LEGACY_CPQARRAY\0000                                   : Cpqarray
ROOT\LEGACY_DAC2W2K\0000                                    : dac2w2k
ROOT\LEGACY_DAC960NT\0000                                   : dac960nt
ROOT\LEGACY_DMBOOT\0000                                     : dmboot
ROOT\LEGACY_DMLOAD\0000                                     : dmload
ROOT\LEGACY_DPTI2O\0000                                     : dpti2o
ROOT\LEGACY_EIO_XP\0000                                     : EIO_XP
ROOT\LEGACY_FIPS\0000                                       : Fips
ROOT\LEGACY_GPC\0000                                        : ROOT\LEGACY_HPN\0000                                        : hpn
ROOT\LEGACY_HTTP\0000                                       : HTTP
ROOT\LEGACY_I2OMGMT\0000                                    : i2omgmt
ROOT\LEGACY_I2OMP\0000                                      : i2omp
ROOT\LEGACY_INI910U\0000                                    : ini910u
ROOT\LEGACY_IPNAT\0000                                      : ROOT\LEGACY_IPSEC\0000                                      : ROOT\LEGACY_KSECDD\0000                                     : ksecdd
ROOT\LEGACY_MNMDD\0000                                      : mnmdd
ROOT\LEGACY_MOUNTMGR\0000                                   : mountmgr
ROOT\LEGACY_MRAID35X\0000                                   : mraid35x
ROOT\LEGACY_NDIS\0000                                       : ROOT\LEGACY_NDISTAPI\0000                                   : NDIS-ROOT\LEGACY_NDISUIO\0000                                    : NDIS-ROOT\LEGACY_NDPROXY\0000                                    : NDProxy
ROOT\LEGACY_NETBT\0000                                      : NetBios ROOT\LEGACY_NULL\0000                                       : Null
ROOT\LEGACY_PARTMGR\0000                                    : PartMgr
ROOT\LEGACY_PARVDM\0000                                     : ParVdm
ROOT\LEGACY_PCIIDE\0000                                     : PCIIde
ROOT\LEGACY_PERC2\0000                                      : perc2
ROOT\LEGACY_PERC2HIB\0000                                   : perc2hib
ROOT\LEGACY_QL1080\0000                                     : ql1080
ROOT\LEGACY_QL10WNT\0000                                    : Ql10wnt
ROOT\LEGACY_QL12160\0000                                    : ql12160
ROOT\LEGACY_QL1240\0000                                     : ql1240
ROOT\LEGACY_QL1280\0000                                     : ql1280
ROOT\LEGACY_RASACD\0000                                     : ROOT\LEGACY_RDPCDD\0000                                     : RDPCDD
ROOT\LEGACY_SISAGP\0000                                     : SIS - ROOT\LEGACY_SPARROW\0000                                    : Sparrow
ROOT\LEGACY_SYMC810\0000                                    : symc810
ROOT\LEGACY_SYMC8XX\0000                                    : symc8xx
ROOT\LEGACY_SYM_HI\0000                                     : sym_hi
ROOT\LEGACY_SYM_U3\0000                                     : sym_u3
ROOT\LEGACY_TCPIP\0000                                      : ROOT\LEGACY_TDRPMAN\0000                                    : Acronis Try&Decide and Restore Points filter
ROOT\LEGACY_TOSIDE\0000                                     : TosIde
ROOT\LEGACY_ULTRA\0000                                      : ultra
ROOT\LEGACY_VGASAVE\0000                                    : VgaSave
ROOT\LEGACY_VIAAGP\0000                                     : VIA - ROOT\LEGACY_VIAIDE\0000                                     : ViaIde
ROOT\LEGACY_VMM\0000                                        : Virtual Machine Monitor
ROOT\LEGACY_VMSCSI\0000                                     : vmscsi
ROOT\LEGACY_VOLSNAP\0000                                    : VolSnap
ROOT\LEGACY_WANARP\0000                                     : ROOT\LEGACY_WDF01000\0000                                   : Kernel Mode Driver Frameworks service
ROOT\MEDIA\MS_MMACM                                         : ROOT\MEDIA\MS_MMDRV                                         : ROOT\MEDIA\MS_MMMCI                                         : ROOT\MEDIA\MS_MMVCD                                         : ROOT\MEDIA\MS_MMVID                                         : ROOT\MS_L2TPMINIPORT\0000                                   : ROOT\MS_NDISWANIP\0000                                      : ROOT\MS_PPPOEMINIPORT\0000                                  : ROOT\MS_PPTPMINIPORT\0000                                   : ROOT\MS_PSCHEDMP\0000                                       : ROOT\MS_PSCHEDMP\0001                                       : Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller - ROOT\MS_PSCHEDMP\0002                                       : Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller - ROOT\MS_PSCHEDMP\0003                                       : 802.11n Network Adapter - ROOT\MS_PTIMINIPORT\0000                                    : ROOT\RDPDR\0000                                             : ROOT\RDP_KBD\0000                                           : ROOT\RDP_MOU\0000                                           : ROOT\SEAGATEDEVICES\0000                                    : Seagate DiscWizard Image Backup Archive Explorer
ROOT\SYSTEM\0000                                            : ROOT\SYSTEM\0001                                            : ROOT\SYSTEM\0002                                            : ROOT\SYSTEM\0003                                            : DAEMON Tools Virtual Bus Driver
SCSI\ARRAY&VEN_MARVELL&PROD_VIRTUAL_DEVICE&REV_1.00\5&3B49150A&0&0140: Marvell Virtual Device
SCSI\DISK&VEN_WDC_WD80&PROD_0JB-00JJC0&REV_\5&3B49150A&0&000: WDC WD80 0JB-00JJC0 SCSI Disk Device
STORAGE\REMOVABLEMEDIA\7&3AC2A2B2&0&RM                      : STORAGE\VOLUME\1&30A96598&0&SIGNATURE51135113OFFSET3E8246E00LENGTHEB9279200: STORAGE\VOLUME\1&30A96598&0&SIGNATURE51135113OFFSET7E00LENGTH3E7A5F000: SW\{A7C7A5B0-5AF3-11D1-9CED-00A024BF0407}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{B7EAFDC0-A680-11D0-96D8-00AA0051E51D}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{CD171DE3-69E5-11D2-B56D-0000F8754380}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{EEAB7790-C514-11D1-B42B-00805FC1270E}\ASYNCMAC          : RAS USB\ROOT_HUB\4&14D59EDA&0                                   : USB\ROOT_HUB\4&1BD273F9&0                                   : USB\ROOT_HUB\4&1D34232F&0                                   : USB\ROOT_HUB\4&3141BC6C&0                                   : USB\ROOT_HUB\4&33D5EF4B&0                                   : USB\ROOT_HUB\4&67E9D0C&0                                    : USB\ROOT_HUB20\4&290CAFBE&0                                 : USB\ROOT_HUB20\4&3097EDFD&0                                 : USB\VID_0324&PID_BC08\AA04012700007437                      : USB\VID_045E&PID_0745\5&35EDA8E7&0&1                        : Microsoft Mouse and Keyboard Detection Driver (USB)
USB\VID_045E&PID_0745&MI_00\6&18E82B6A&0&0000               : USB HID-USB\VID_045E&PID_0745&MI_01\6&18E82B6A&0&0001               : USB HID-USB\VID_045E&PID_0745&MI_02\6&18E82B6A&0&0002               : USB HID-USB\VID_0B05&PID_1742\1.0                                   : 802.11n Network Adapter
USB\VID_16D5&PID_6502\5&385A3465&0&2                        : USB\VID_16D5&PID_6502&MI_00\6&1C652A50&0&0000               : AnyDATA CDMA USB Modem (PID 6502)
USB\VID_16D5&PID_6502&MI_01\6&1C652A50&0&0001               : AnyDATA CDMA USB Serial 1 (DIAG) Device (PID 6502) (COM4)
USB\VID_16D5&PID_6502&MI_02\6&1C652A50&0&0002               : AnyDATA CDMA USB Serial 2 (NMEA) Device (PID 6502) (COM5)
USB\VID_16D5&PID_6502&MI_03\6&1C652A50&0&0003               : USBSTOR\CDROM&VEN_ANYDATA&PROD_CD-ROM&REV_1.00\7&224B8020&0 : AnyDATA CD-ROM USB Device
USBSTOR\DISK&VEN_OCZ&PROD_RALLY2&REV_1100\AA04012700007437&0: OCZ RALLY2 USB Device
V1394\NIC1394\17CF51D1E8C00                                 : 198 matching device(s) found.

I've found that string:
ISAPNP\READDATAPORT\0 : PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+
And launched text search in all driverpacks [C:\D\] to search every .inf-file for "ISAPNP\READDATAPORT\0" and "PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008" strings.
And it found no matches, i thought this can be usefull. Correct me if i'm wrong.

My FindHwids results is the same

15

(109 replies, posted in Universal Imaging)

Some notice about DpsFnshr.exe

OverFlow wrote:

to get around the reigistry size issue most people do the 3rd party DriverPack with SAD and the main packs with the method described.

this works because the DriverPacks Finisher resets the device path and removes the main packs. if you run sad after the finisher then the tpdps will be an isolated run. first run main packs with minisetup... second run during gui mode after the finisher runs on the main packs and cleans them up and resets the device path in the registry. Clean slate for SAD to run the 3rd party DriverPack from big_smile!

I've checked many times launching DpsFnshr.exe with various combinations of DevicePath value:
1. DevicePath

%SystemRoot%\inf;%SystemDrive%\D\C\A;%SystemDrive%\D\C\A2;%SystemDrive%\D\C\A4;%SystemDrive%\D\C\A5;%SystemDrive%\D\C\A6;%SystemDrive%\D\C\A7;%SystemDrive%\D\C\Ak;%SystemDrive%\D\C\AM;%SystemDrive%\D\C\At;%SystemDrive%\D\C\D;%SystemDrive%\D\C\E;%SystemDrive%\D\C\E1;%SystemDrive%\D\C\F;%SystemDrive%\D\C\H;%SystemDrive%\D\C\I;%SystemDrive%\D\C\I2\1;%SystemDrive%\D\C\I2\2;%SystemDrive%\D\C\I2\3;%SystemDrive%\D\C\I2\4;%SystemDrive%\D\C\I2\5;%SystemDrive%\D\C\I2\7;%SystemDrive%\D\C\I4;%SystemDrive%\D\C\I5;%SystemDrive%\D\C\Ia;%SystemDrive%\D\C\Ib;%SystemDrive%\D\C\Ic;%SystemDrive%\D\C\Id;%SystemDrive%\D\C\Ie;%SystemDrive%\D\C\IN;%SystemDrive%\D\C\IT;%SystemDrive%\D\C\Iz;%SystemDrive%\D\C\K;%SystemDrive%\D\C\L;%SystemDrive%\D\C\N;%SystemDrive%\D\C\N1;%SystemDrive%\D\C\N4;%SystemDrive%\D\C\N6;%SystemDrive%\D\C\N7;%SystemDrive%\D\C\Nt;%SystemDrive%\D\C\S;%SystemDrive%\D\C\T;%SystemDrive%\D\C\U\A;%SystemDrive%\D\C\U\B;%SystemDrive%\D\C\U\E;%SystemDrive%\D\C\U\F;%SystemDrive%\D\C\U\M;%SystemDrive%\D\C\U\MC;%SystemDrive%\D\C\U\N;%SystemDrive%\D\C\U\N1;%SystemDrive%\D\C\U\P;%SystemDrive%\D\C\U\PR;%SystemDrive%\D\C\U\R;%SystemDrive%\D\C\U\RE;%SystemDrive%\D\C\U\S;%SystemDrive%\D\C\U\T;%SystemDrive%\D\C\Ul;%SystemDrive%\D\C\V;%SystemDrive%\D\C\V2;%SystemDrive%\D\C\V3;%SystemDrive%\D\C\VX;%SystemDrive%\D\G\3;%SystemDrive%\D\G\3a;%SystemDrive%\D\G\3b;%SystemDrive%\D\G\3b\TV;%SystemDrive%\D\G\A;%SystemDrive%\D\G\A\W;%SystemDrive%\D\G\A1;%SystemDrive%\D\G\A1\W;%SystemDrive%\D\G\A2;%SystemDrive%\D\G\A3;%SystemDrive%\D\G\A4;%SystemDrive%\D\G\A7;%SystemDrive%\D\G\A8;%SystemDrive%\D\G\AD;%SystemDrive%\D\G\As;%SystemDrive%\D\G\I;%SystemDrive%\D\G\I0;%SystemDrive%\D\G\I1;%SystemDrive%\D\G\I2;%SystemDrive%\D\G\I3;%SystemDrive%\D\G\I4;%SystemDrive%\D\G\I5;%SystemDrive%\D\G\I6;%SystemDrive%\D\G\I7;%SystemDrive%\D\G\I8;%SystemDrive%\D\G\I9;%SystemDrive%\D\G\IA;%SystemDrive%\D\G\M;%SystemDrive%\D\G\M1;%SystemDrive%\D\G\N;%SystemDrive%\D\G\N1;%SystemDrive%\D\G\N2;%SystemDrive%\D\G\N8;%SystemDrive%\D\G\P;%SystemDrive%\D\G\S3;%SystemDrive%\D\G\S3a;%SystemDrive%\D\G\S3b;%SystemDrive%\D\G\S3c;%SystemDrive%\D\G\S3d;%SystemDrive%\D\G\S3e;%SystemDrive%\D\G\S3f;%SystemDrive%\D\G\S3g;%SystemDrive%\D\G\Sa;%SystemDrive%\D\G\Sb;%SystemDrive%\D\G\Sc;%SystemDrive%\D\G\Sd;%SystemDrive%\D\G\Se;%SystemDrive%\D\G\sf;%SystemDrive%\D\G\T1;%SystemDrive%\D\G\T2;%SystemDrive%\D\G\TR;%SystemDrive%\D\G\V;%SystemDrive%\D\G\V1;%SystemDrive%\D\G\V2;%SystemDrive%\D\G\V3;%SystemDrive%\D\G\V4;%SystemDrive%\D\G\V5;%SystemDrive%\D\G\V6;%SystemDrive%\D\G\V7;%SystemDrive%\D\G\V8;%SystemDrive%\D\G\V9;%SystemDrive%\D\G\Va;%SystemDrive%\D\G\Vb;%SystemDrive%\D\G\X;%SystemDrive%\D\G\x2;%SystemDrive%\D\L\3;%SystemDrive%\D\L\3A;%SystemDrive%\D\L\3B;%SystemDrive%\D\L\3C;%SystemDrive%\D\L\3D;%SystemDrive%\D\L\3E;%SystemDrive%\D\L\3F;%SystemDrive%\D\L\3G;%SystemDrive%\D\L\A;%SystemDrive%\D\L\A1;%SystemDrive%\D\L\A2;%SystemDrive%\D\L\A4;%SystemDrive%\D\L\A5;%SystemDrive%\D\L\A6;%SystemDrive%\D\L\AD;%SystemDrive%\D\L\AG;%SystemDrive%\D\L\AL;%SystemDrive%\D\L\AM;%SystemDrive%\D\L\AM1;%SystemDrive%\D\L\AM2;%SystemDrive%\D\L\AN;%SystemDrive%\D\L\AS;%SystemDrive%\D\L\At;%SystemDrive%\D\L\At1;%SystemDrive%\D\L\At2;%SystemDrive%\D\L\AX;%SystemDrive%\D\L\Ax1;%SystemDrive%\D\L\Ax2;%SystemDrive%\D\L\Ax3;%SystemDrive%\D\L\Ax4;%SystemDrive%\D\L\Ax5;%SystemDrive%\D\L\Ax6;%SystemDrive%\D\L\B1;%SystemDrive%\D\L\B2;%SystemDrive%\D\L\B3;%SystemDrive%\D\L\B4;%SystemDrive%\D\L\BF;%SystemDrive%\D\L\BF1;%SystemDrive%\D\L\BU;%SystemDrive%\D\L\BU1;%SystemDrive%\D\L\BU2;%SystemDrive%\D\L\C;%SystemDrive%\D\L\C1;%SystemDrive%\D\L\C2;%SystemDrive%\D\L\C3;%SystemDrive%\D\L\C5;%SystemDrive%\D\L\D;%SystemDrive%\D\L\D0;%SystemDrive%\D\L\D1;%SystemDrive%\D\L\D2;%SystemDrive%\D\L\D3;%SystemDrive%\D\L\D4;%SystemDrive%\D\L\D5;%SystemDrive%\D\L\D6;%SystemDrive%\D\L\D7;%SystemDrive%\D\L\D8;%SystemDrive%\D\L\D9;%SystemDrive%\D\L\DA;%SystemDrive%\D\L\DA1;%SystemDrive%\D\L\DA2;%SystemDrive%\D\L\G;%SystemDrive%\D\L\H;%SystemDrive%\D\L\HP;%SystemDrive%\D\L\I;%SystemDrive%\D\L\IC;%SystemDrive%\D\L\IC1;%SystemDrive%\D\L\J;%SystemDrive%\D\L\L;%SystemDrive%\D\L\L1;%SystemDrive%\D\L\L2;%SystemDrive%\D\L\L3;%SystemDrive%\D\L\L4;%SystemDrive%\D\L\L5;%SystemDrive%\D\L\L6;%SystemDrive%\D\L\L7;%SystemDrive%\D\L\M;%SystemDrive%\D\L\MI;%SystemDrive%\D\L\MO;%SystemDrive%\D\L\MS;%SystemDrive%\D\L\N;%SystemDrive%\D\L\N1;%SystemDrive%\D\L\N2;%SystemDrive%\D\L\N3;%SystemDrive%\D\L\N4;%SystemDrive%\D\L\N5;%SystemDrive%\D\L\N6;%SystemDrive%\D\L\N7;%SystemDrive%\D\L\N8;%SystemDrive%\D\L\N9;%SystemDrive%\D\L\ND;%SystemDrive%\D\L\NS;%SystemDrive%\D\L\NV;%SystemDrive%\D\L\NV1;%SystemDrive%\D\L\NV1\P\2K;%SystemDrive%\D\L\NV1\P\XP;%SystemDrive%\D\L\NV2;%SystemDrive%\D\L\NV3;%SystemDrive%\D\L\NV4;%SystemDrive%\D\L\NV5;%SystemDrive%\D\L\NV6;%SystemDrive%\D\L\NV7;%SystemDrive%\D\L\O;%SystemDrive%\D\L\O1;%SystemDrive%\D\L\O2;%SystemDrive%\D\L\O3;%SystemDrive%\D\L\O4;%SystemDrive%\D\L\O5;%SystemDrive%\D\L\O6;%SystemDrive%\D\L\R;%SystemDrive%\D\L\R1;%SystemDrive%\D\L\R2;%SystemDrive%\D\L\R4;%SystemDrive%\D\L\RS;%SystemDrive%\D\L\S;%SystemDrive%\D\L\S1;%SystemDrive%\D\L\S2;%SystemDrive%\D\L\S3;%SystemDrive%\D\L\S4;%SystemDrive%\D\L\S6;%SystemDrive%\D\L\S7;%SystemDrive%\D\L\S8;%SystemDrive%\D\L\SB;%SystemDrive%\D\L\SB1;%SystemDrive%\D\L\Sc;%SystemDrive%\D\L\Sc1;%SystemDrive%\D\L\Sc5;%SystemDrive%\D\L\Sc7;%SystemDrive%\D\L\Sc8;%SystemDrive%\D\L\Sc9;%SystemDrive%\D\L\SL;%SystemDrive%\D\L\SS;%SystemDrive%\D\L\SS2;%SystemDrive%\D\L\U;%SystemDrive%\D\L\U1;%SystemDrive%\D\L\U3;%SystemDrive%\D\L\U4;%SystemDrive%\D\L\U5;%SystemDrive%\D\L\V;%SystemDrive%\D\L\V1;%SystemDrive%\D\L\V2;%SystemDrive%\D\L\X;%SystemDrive%\D\L\X1;%SystemDrive%\D\L\Z;%SystemDrive%\D\M\3;%SystemDrive%\D\M\3B;%SystemDrive%\D\M\3C;%SystemDrive%\D\M\A;%SystemDrive%\D\M\A2;%SystemDrive%\D\M\A3;%SystemDrive%\D\M\A4;%SystemDrive%\D\M\A5;%SystemDrive%\D\M\A6;%SystemDrive%\D\M\A7;%SystemDrive%\D\M\A8;%SystemDrive%\D\M\AD;%SystemDrive%\D\M\AD2;%SystemDrive%\D\M\AD3;%SystemDrive%\D\M\AD4;%SystemDrive%\D\M\AD5;%SystemDrive%\D\M\AD6;%SystemDrive%\D\M\AD7;%SystemDrive%\D\M\AD8;%SystemDrive%\D\M\AD9;%SystemDrive%\D\M\ADA;%SystemDrive%\D\M\ADB;%SystemDrive%\D\M\ADC;%SystemDrive%\D\M\ADD;%SystemDrive%\D\M\AM;%SystemDrive%\D\M\AM0;%SystemDrive%\D\M\AM1;%SystemDrive%\D\M\AM2;%SystemDrive%\D\M\AM3;%SystemDrive%\D\M\AM4;%SystemDrive%\D\M\AM9;%SystemDrive%\D\M\AR;%SystemDrive%\D\M\AT;%SystemDrive%\D\M\AU;%SystemDrive%\D\M\AU2;%SystemDrive%\D\M\AU3;%SystemDrive%\D\M\B;%SystemDrive%\D\M\C;%SystemDrive%\D\M\C1;%SystemDrive%\D\M\C2;%SystemDrive%\D\M\C3;%SystemDrive%\D\M\C4;%SystemDrive%\D\M\D;%SystemDrive%\D\M\D1;%SystemDrive%\D\M\D3;%SystemDrive%\D\M\D4;%SystemDrive%\D\M\E;%SystemDrive%\D\M\H;%SystemDrive%\D\M\H1;%SystemDrive%\D\M\H10;%SystemDrive%\D\M\H11;%SystemDrive%\D\M\H12;%SystemDrive%\D\M\H1S;%SystemDrive%\D\M\H2;%SystemDrive%\D\M\H3;%SystemDrive%\D\M\H3K;%SystemDrive%\D\M\H3S;%SystemDrive%\D\M\H4;%SystemDrive%\D\M\H4K;%SystemDrive%\D\M\H4S;%SystemDrive%\D\M\H5;%SystemDrive%\D\M\H6;%SystemDrive%\D\M\H6S;%SystemDrive%\D\M\H7;%SystemDrive%\D\M\H7S;%SystemDrive%\D\M\H8;%SystemDrive%\D\M\H9;%SystemDrive%\D\M\H9S;%SystemDrive%\D\M\I;%SystemDrive%\D\M\I2;%SystemDrive%\D\M\I3;%SystemDrive%\D\M\I4;%SystemDrive%\D\M\I5;%SystemDrive%\D\M\I6;%SystemDrive%\D\M\I7;%SystemDrive%\D\M\I8;%SystemDrive%\D\M\IB;%SystemDrive%\D\M\IB3;%SystemDrive%\D\M\IB6;%SystemDrive%\D\M\IN;%SystemDrive%\D\M\IT;%SystemDrive%\D\M\IT\2k;%SystemDrive%\D\M\IT\2k3;%SystemDrive%\D\M\IT\XP;%SystemDrive%\D\M\IT1;%SystemDrive%\D\M\IT1\2K;%SystemDrive%\D\M\IT1\2k3;%SystemDrive%\D\M\J;%SystemDrive%\D\M\L;%SystemDrive%\D\M\L0;%SystemDrive%\D\M\L1;%SystemDrive%\D\M\L2;%SystemDrive%\D\M\L3;%SystemDrive%\D\M\L4;%SystemDrive%\D\M\L5;%SystemDrive%\D\M\L6;%SystemDrive%\D\M\L7;%SystemDrive%\D\M\L8;%SystemDrive%\D\M\L8r;%SystemDrive%\D\M\L9;%SystemDrive%\D\M\La;%SystemDrive%\D\M\Lb;%SystemDrive%\D\M\M;%SystemDrive%\D\M\M2;%SystemDrive%\D\M\M3;%SystemDrive%\D\M\M4;%SystemDrive%\D\M\M5;%SystemDrive%\D\M\N2;%SystemDrive%\D\M\N4;%SystemDrive%\D\M\N4I;%SystemDrive%\D\M\N5;%SystemDrive%\D\M\N6;%SystemDrive%\D\M\N6r;%SystemDrive%\D\M\N7;%SystemDrive%\D\M\N7r;%SystemDrive%\D\M\Nt;%SystemDrive%\D\M\P;%SystemDrive%\D\M\P\K;%SystemDrive%\D\M\P\S;%SystemDrive%\D\M\P1;%SystemDrive%\D\M\P1K;%SystemDrive%\D\M\P1S;%SystemDrive%\D\M\P2;%SystemDrive%\D\M\P2\K;%SystemDrive%\D\M\P2S;%SystemDrive%\D\M\P3;%SystemDrive%\D\M\P4;%SystemDrive%\D\M\P5;%SystemDrive%\D\M\P6;%SystemDrive%\D\M\P6K;%SystemDrive%\D\M\P6S;%SystemDrive%\D\M\P7;%SystemDrive%\D\M\P8;%SystemDrive%\D\M\P9;%SystemDrive%\D\M\PA;%SystemDrive%\D\M\PAS;%SystemDrive%\D\M\PC;%SystemDrive%\D\M\PD;%SystemDrive%\D\M\Q;%SystemDrive%\D\M\Q2;%SystemDrive%\D\M\Q3;%SystemDrive%\D\M\Q4;%SystemDrive%\D\M\S;%SystemDrive%\D\M\S2;%SystemDrive%\D\M\S2A;%SystemDrive%\D\M\S3;%SystemDrive%\D\M\S4;%SystemDrive%\D\M\S5;%SystemDrive%\D\M\S7;%SystemDrive%\D\M\S7A;%SystemDrive%\D\M\S7B;%SystemDrive%\D\M\S8;%SystemDrive%\D\M\S9;%SystemDrive%\D\M\SA;%SystemDrive%\D\M\SA2;%SystemDrive%\D\M\SB;%SystemDrive%\D\M\SB2;%SystemDrive%\D\M\SB3;%SystemDrive%\D\M\SB4;%SystemDrive%\D\M\SB5;%SystemDrive%\D\M\SC;%SystemDrive%\D\M\SC2;%SystemDrive%\D\M\SC3;%SystemDrive%\D\M\SC4;%SystemDrive%\D\M\SC5;%SystemDrive%\D\M\SS;%SystemDrive%\D\M\SS1;%SystemDrive%\D\M\SS2;%SystemDrive%\D\M\SS3;%SystemDrive%\D\M\T;%SystemDrive%\D\M\V;%SystemDrive%\D\M\V2;%SystemDrive%\D\M\V3;%SystemDrive%\D\M\V4;%SystemDrive%\D\M\VM;%SystemDrive%\D\P\A;%SystemDrive%\D\S\A;%SystemDrive%\D\S\A1;%SystemDrive%\D\S\AL;%SystemDrive%\D\S\AS;%SystemDrive%\D\S\AU;%SystemDrive%\D\S\C1;%SystemDrive%\D\S\C2;%SystemDrive%\D\S\C3;%SystemDrive%\D\S\C4;%SystemDrive%\D\S\C5;%SystemDrive%\D\S\C6;%SystemDrive%\D\S\C7;%SystemDrive%\D\S\C8;%SystemDrive%\D\S\CL;%SystemDrive%\D\S\CR;%SystemDrive%\D\S\CR1;%SystemDrive%\D\S\CR3;%SystemDrive%\D\S\CR4\Win2k_xp;%SystemDrive%\D\S\CRa;%SystemDrive%\D\S\CRa\winxp\bin;%SystemDrive%\D\S\CRb\Win2k_xp;%SystemDrive%\D\S\CT;%SystemDrive%\D\S\CT1;%SystemDrive%\D\S\CT2;%SystemDrive%\D\S\CT3;%SystemDrive%\D\S\E;%SystemDrive%\D\S\E1;%SystemDrive%\D\S\E2;%SystemDrive%\D\S\E3;%SystemDrive%\D\S\ES;%SystemDrive%\D\S\ES1;%SystemDrive%\D\S\H;%SystemDrive%\D\S\H1;%SystemDrive%\D\S\I;%SystemDrive%\D\S\I0;%SystemDrive%\D\S\I1;%SystemDrive%\D\S\I10;%SystemDrive%\D\S\I11;%SystemDrive%\D\S\I12;%SystemDrive%\D\S\I13;%SystemDrive%\D\S\I14;%SystemDrive%\D\S\I15;%SystemDrive%\D\S\I16;%SystemDrive%\D\S\I17;%SystemDrive%\D\S\I18;%SystemDrive%\D\S\I19;%SystemDrive%\D\S\I2;%SystemDrive%\D\S\I20;%SystemDrive%\D\S\I21;%SystemDrive%\D\S\I3;%SystemDrive%\D\S\I4;%SystemDrive%\D\S\I5;%SystemDrive%\D\S\I6;%SystemDrive%\D\S\I7;%SystemDrive%\D\S\I8;%SystemDrive%\D\S\I9;%SystemDrive%\D\S\M;%SystemDrive%\D\S\M0;%SystemDrive%\D\S\M1;%SystemDrive%\D\S\M2;%SystemDrive%\D\S\M3;%SystemDrive%\D\S\M4;%SystemDrive%\D\S\M5;%SystemDrive%\D\S\M6;%SystemDrive%\D\S\M7;%SystemDrive%\D\S\M8;%SystemDrive%\D\S\M9;%SystemDrive%\D\S\Ma;%SystemDrive%\D\S\Mb;%SystemDrive%\D\S\N;%SystemDrive%\D\S\N2;%SystemDrive%\D\S\R;%SystemDrive%\D\S\R1;%SystemDrive%\D\S\R2;%SystemDrive%\D\S\R3;%SystemDrive%\D\S\S;%SystemDrive%\D\S\S0;%SystemDrive%\D\S\S1;%SystemDrive%\D\S\S10;%SystemDrive%\D\S\S11;%SystemDrive%\D\S\S12;%SystemDrive%\D\S\S13;%SystemDrive%\D\S\S14;%SystemDrive%\D\S\S15;%SystemDrive%\D\S\S16;%SystemDrive%\D\S\S17;%SystemDrive%\D\S\S18;%SystemDrive%\D\S\S19;%SystemDrive%\D\S\S2;%SystemDrive%\D\S\S20;%SystemDrive%\D\S\S21;%SystemDrive%\D\S\S22;%SystemDrive%\D\S\S25;%SystemDrive%\D\S\S26;%SystemDrive%\D\S\S27;%SystemDrive%\D\S\S28;%SystemDrive%\D\S\S29;%SystemDrive%\D\S\S3;%SystemDrive%\D\S\S30;%SystemDrive%\D\S\S31;%SystemDrive%\D\S\S32;%SystemDrive%\D\S\S33;%SystemDrive%\D\S\S34;%SystemDrive%\D\S\S35;%SystemDrive%\D\S\S36;%SystemDrive%\D\S\S37;%SystemDrive%\D\S\S38;%SystemDrive%\D\S\S39;%SystemDrive%\D\S\S4;%SystemDrive%\D\S\S5;%SystemDrive%\D\S\S6;%SystemDrive%\D\S\S7;%SystemDrive%\D\S\S8;%SystemDrive%\D\S\S9;%SystemDrive%\D\S\Sa;%SystemDrive%\D\S\Sb;%SystemDrive%\D\S\Sc;%SystemDrive%\D\S\Sd;%SystemDrive%\D\S\Se;%SystemDrive%\D\S\Sf;%SystemDrive%\D\S\Sg;%SystemDrive%\D\S\Sh;%SystemDrive%\D\S\Si;%SystemDrive%\D\S\Sj;%SystemDrive%\D\S\Sk;%SystemDrive%\D\S\Sl;%SystemDrive%\D\S\Sm;%SystemDrive%\D\S\Sn;%SystemDrive%\D\S\So;%SystemDrive%\D\S\Sp;%SystemDrive%\D\S\Sq;%SystemDrive%\D\S\Sr;%SystemDrive%\D\S\SS;%SystemDrive%\D\S\SS2;%SystemDrive%\D\S\T;%SystemDrive%\D\S\T1;%SystemDrive%\D\S\T2;%SystemDrive%\D\S\TB;%SystemDrive%\D\S\TR;%SystemDrive%\D\S\V1;%SystemDrive%\D\S\V2;%SystemDrive%\D\S\V3;%SystemDrive%\D\S\X;%SystemDrive%\D\S\X0;%SystemDrive%\D\S\X1;%SystemDrive%\D\S\X11;%SystemDrive%\D\S\X12;%SystemDrive%\D\S\X13;%SystemDrive%\D\S\X14;%SystemDrive%\D\S\X15;%SystemDrive%\D\S\X16;%SystemDrive%\D\S\X17;%SystemDrive%\D\S\X18;%SystemDrive%\D\S\X19;%SystemDrive%\D\S\X2;%SystemDrive%\D\S\X20;%SystemDrive%\D\S\X21;%SystemDrive%\D\S\X22;%SystemDrive%\D\S\X23;%SystemDrive%\D\S\X24;%SystemDrive%\D\S\X25;%SystemDrive%\D\S\X26;%SystemDrive%\D\S\X3;%SystemDrive%\D\S\X4;%SystemDrive%\D\S\X5;%SystemDrive%\D\S\X6;%SystemDrive%\D\S\X7;%SystemDrive%\D\S\X8;%SystemDrive%\D\S\X9;%SystemDrive%\D\S\Y;%SystemDrive%\D\S\Y1;%SystemDrive%\D\W\3;%SystemDrive%\D\W\3a;%SystemDrive%\D\W\3b;%SystemDrive%\D\W\3c;%SystemDrive%\D\W\3e;%SystemDrive%\D\W\3f;%SystemDrive%\D\W\A;%SystemDrive%\D\W\A2;%SystemDrive%\D\W\A4;%SystemDrive%\D\W\AL;%SystemDrive%\D\W\AS;%SystemDrive%\D\W\At;%SystemDrive%\D\W\At1;%SystemDrive%\D\W\AtF;%SystemDrive%\D\W\AV;%SystemDrive%\D\W\B;%SystemDrive%\D\W\B1;%SystemDrive%\D\W\B2;%SystemDrive%\D\W\B3;%SystemDrive%\D\W\B4;%SystemDrive%\D\W\B5;%SystemDrive%\D\W\B6;%SystemDrive%\D\W\B8;%SystemDrive%\D\W\B9;%SystemDrive%\D\W\BL;%SystemDrive%\D\W\BL3;%SystemDrive%\D\W\BL4;%SystemDrive%\D\W\BL5;%SystemDrive%\D\W\BL6;%SystemDrive%\D\W\Br;%SystemDrive%\D\W\Br0;%SystemDrive%\D\W\Br3;%SystemDrive%\D\W\Br7;%SystemDrive%\D\W\Br8;%SystemDrive%\D\W\BU;%SystemDrive%\D\W\BU1;%SystemDrive%\D\W\BU2;%SystemDrive%\D\W\BU3;%SystemDrive%\D\W\BU4;%SystemDrive%\D\W\BU5;%SystemDrive%\D\W\BU7;%SystemDrive%\D\W\BU8;%SystemDrive%\D\W\C;%SystemDrive%\D\W\C3;%SystemDrive%\D\W\CL;%SystemDrive%\D\W\Co;%SystemDrive%\D\W\Cr;%SystemDrive%\D\W\Cr2;%SystemDrive%\D\W\Cr3;%SystemDrive%\D\W\Cr4;%SystemDrive%\D\W\D;%SystemDrive%\D\W\D1;%SystemDrive%\D\W\D2;%SystemDrive%\D\W\D3;%SystemDrive%\D\W\D4;%SystemDrive%\D\W\D5;%SystemDrive%\D\W\D6;%SystemDrive%\D\W\D7;%SystemDrive%\D\W\D8;%SystemDrive%\D\W\DA;%SystemDrive%\D\W\DB;%SystemDrive%\D\W\DF;%SystemDrive%\D\W\DG;%SystemDrive%\D\W\DL;%SystemDrive%\D\W\E;%SystemDrive%\D\W\E1;%SystemDrive%\D\W\E2;%SystemDrive%\D\W\E6;%SystemDrive%\D\W\E8;%SystemDrive%\D\W\EC;%SystemDrive%\D\W\EH;%SystemDrive%\D\W\Es;%SystemDrive%\D\W\G;%SystemDrive%\D\W\G2;%SystemDrive%\D\W\H;%SystemDrive%\D\W\I;%SystemDrive%\D\W\I1;%SystemDrive%\D\W\I2;%SystemDrive%\D\W\I3;%SystemDrive%\D\W\I4;%SystemDrive%\D\W\I5;%SystemDrive%\D\W\I6;%SystemDrive%\D\W\I7;%SystemDrive%\D\W\Ib;%SystemDrive%\D\W\IS;%SystemDrive%\D\W\L;%SystemDrive%\D\W\L0;%SystemDrive%\D\W\L1;%SystemDrive%\D\W\L2;%SystemDrive%\D\W\L3;%SystemDrive%\D\W\L4;%SystemDrive%\D\W\L5;%SystemDrive%\D\W\L6;%SystemDrive%\D\W\L7;%SystemDrive%\D\W\L8;%SystemDrive%\D\W\L9;%SystemDrive%\D\W\La;%SystemDrive%\D\W\Lb;%SystemDrive%\D\W\Lc;%SystemDrive%\D\W\Ld;%SystemDrive%\D\W\Le;%SystemDrive%\D\W\Lf;%SystemDrive%\D\W\Lg;%SystemDrive%\D\W\Lh;%SystemDrive%\D\W\Lm;%SystemDrive%\D\W\Lm1;%SystemDrive%\D\W\Lm2;%SystemDrive%\D\W\Lx;%SystemDrive%\D\W\M;%SystemDrive%\D\W\MI;%SystemDrive%\D\W\MT;%SystemDrive%\D\W\N1;%SystemDrive%\D\W\N2;%SystemDrive%\D\W\N3;%SystemDrive%\D\W\N4;%SystemDrive%\D\W\N6;%SystemDrive%\D\W\N8;%SystemDrive%\D\W\N9;%SystemDrive%\D\W\NA;%SystemDrive%\D\W\NB;%SystemDrive%\D\W\NC;%SystemDrive%\D\W\ND;%SystemDrive%\D\W\NH;%SystemDrive%\D\W\No;%SystemDrive%\D\W\o;%SystemDrive%\D\W\o2;%SystemDrive%\D\W\o3;%SystemDrive%\D\W\P;%SystemDrive%\D\W\Pr;%SystemDrive%\D\W\R;%SystemDrive%\D\W\R1;%SystemDrive%\D\W\R2;%SystemDrive%\D\W\R3;%SystemDrive%\D\W\R4;%SystemDrive%\D\W\R5;%SystemDrive%\D\W\R6;%SystemDrive%\D\W\R7;%SystemDrive%\D\W\R8;%SystemDrive%\D\W\R9;%SystemDrive%\D\W\RE;%SystemDrive%\D\W\RE1;%SystemDrive%\D\W\RE2;%SystemDrive%\D\W\RE3;%SystemDrive%\D\W\RE4;%SystemDrive%\D\W\RE5;%SystemDrive%\D\W\RE6;%SystemDrive%\D\W\S;%SystemDrive%\D\W\S0;%SystemDrive%\D\W\S1;%SystemDrive%\D\W\S2;%SystemDrive%\D\W\S3;%SystemDrive%\D\W\S4;%SystemDrive%\D\W\S5;%SystemDrive%\D\W\S6;%SystemDrive%\D\W\S7;%SystemDrive%\D\W\S8;%SystemDrive%\D\W\S9;%SystemDrive%\D\W\Sa;%SystemDrive%\D\W\Sc1;%SystemDrive%\D\W\Sc2;%SystemDrive%\D\W\Sc5;%SystemDrive%\D\W\Sc6;%SystemDrive%\D\W\Sc8;%SystemDrive%\D\W\ScB;%SystemDrive%\D\W\ScD;%SystemDrive%\D\W\Sg;%SystemDrive%\D\W\SI;%SystemDrive%\D\W\Si2;%SystemDrive%\D\W\Si3;%SystemDrive%\D\W\Siu;%SystemDrive%\D\W\Su;%SystemDrive%\D\W\Su2;%SystemDrive%\D\W\Su4;%SystemDrive%\D\W\Su5;%SystemDrive%\D\W\Su8;%SystemDrive%\D\W\SuB;%SystemDrive%\D\W\SuC;%SystemDrive%\D\W\SuE;%SystemDrive%\D\W\T;%SystemDrive%\D\W\T2;%SystemDrive%\D\W\T3;%SystemDrive%\D\W\TO;%SystemDrive%\D\W\TP;%SystemDrive%\D\W\U;%SystemDrive%\D\W\U2;%SystemDrive%\D\W\U3;%SystemDrive%\D\W\U4;%SystemDrive%\D\W\U5;%SystemDrive%\D\W\U6;%SystemDrive%\D\W\U7;%SystemDrive%\D\W\V;%SystemDrive%\D\W\V2;%SystemDrive%\D\W\W;%SystemDrive%\D\W\X;%SystemDrive%\D\W\X2;%SystemDrive%\D\W\X7;%SystemDrive%\D\W\Z;%SystemDrive%\D\W\Z1;%SystemDrive%\D\W\Z2;%SystemDrive%\D\W\Z4;%SystemDrive%\D\W\ZC

17373 symbols
2. DevicePath

%SystemRoot%\inf;C:\D\C\A;C:\D\C\A2;C:\D\C\A4;C:\D\C\A5;C:\D\C\A6;C:\D\C\A7;C:\D\C\Ak;C:\D\C\AM;C:\D\C\At;C:\D\C\D;C:\D\C\E;C:\D\C\E1;C:\D\C\F;C:\D\C\H;C:\D\C\I;C:\D\C\I2\1;C:\D\C\I2\2;C:\D\C\I2\3;C:\D\C\I2\4;C:\D\C\I2\5;C:\D\C\I2\7;C:\D\C\I4;C:\D\C\I5;C:\D\C\Ia;C:\D\C\Ib;C:\D\C\Ic;C:\D\C\Id;C:\D\C\Ie;C:\D\C\IN;C:\D\C\IT;C:\D\C\Iz;C:\D\C\K;C:\D\C\L;C:\D\C\N;C:\D\C\N1;C:\D\C\N4;C:\D\C\N6;C:\D\C\N7;C:\D\C\Nt;C:\D\C\S;C:\D\C\T;C:\D\C\U\A;C:\D\C\U\B;C:\D\C\U\E;C:\D\C\U\F;C:\D\C\U\M;C:\D\C\U\MC;C:\D\C\U\N;C:\D\C\U\N1;C:\D\C\U\P;C:\D\C\U\PR;C:\D\C\U\R;C:\D\C\U\RE;C:\D\C\U\S;C:\D\C\U\T;C:\D\C\Ul;C:\D\C\V;C:\D\C\V2;C:\D\C\V3;C:\D\C\VX;C:\D\G\3;C:\D\G\3a;C:\D\G\3b;C:\D\G\3b\TV;C:\D\G\A;C:\D\G\A\W;C:\D\G\A1;C:\D\G\A1\W;C:\D\G\A2;C:\D\G\A3;C:\D\G\A4;C:\D\G\A7;C:\D\G\A8;C:\D\G\AD;C:\D\G\As;C:\D\G\I;C:\D\G\I0;C:\D\G\I1;C:\D\G\I2;C:\D\G\I3;C:\D\G\I4;C:\D\G\I5;C:\D\G\I6;C:\D\G\I7;C:\D\G\I8;C:\D\G\I9;C:\D\G\IA;C:\D\G\M;C:\D\G\M1;C:\D\G\N;C:\D\G\N1;C:\D\G\N2;C:\D\G\N8;C:\D\G\P;C:\D\G\S3;C:\D\G\S3a;C:\D\G\S3b;C:\D\G\S3c;C:\D\G\S3d;C:\D\G\S3e;C:\D\G\S3f;C:\D\G\S3g;C:\D\G\Sa;C:\D\G\Sb;C:\D\G\Sc;C:\D\G\Sd;C:\D\G\Se;C:\D\G\sf;C:\D\G\T1;C:\D\G\T2;C:\D\G\TR;C:\D\G\V;C:\D\G\V1;C:\D\G\V2;C:\D\G\V3;C:\D\G\V4;C:\D\G\V5;C:\D\G\V6;C:\D\G\V7;C:\D\G\V8;C:\D\G\V9;C:\D\G\Va;C:\D\G\Vb;C:\D\G\X;C:\D\G\x2;C:\D\L\3;C:\D\L\3A;C:\D\L\3B;C:\D\L\3C;C:\D\L\3D;C:\D\L\3E;C:\D\L\3F;C:\D\L\3G;C:\D\L\A;C:\D\L\A1;C:\D\L\A2;C:\D\L\A4;C:\D\L\A5;C:\D\L\A6;C:\D\L\AD;C:\D\L\AG;C:\D\L\AL;C:\D\L\AM;C:\D\L\AM1;C:\D\L\AM2;C:\D\L\AN;C:\D\L\AS;C:\D\L\At;C:\D\L\At1;C:\D\L\At2;C:\D\L\AX;C:\D\L\Ax1;C:\D\L\Ax2;C:\D\L\Ax3;C:\D\L\Ax4;C:\D\L\Ax5;C:\D\L\Ax6;C:\D\L\B1;C:\D\L\B2;C:\D\L\B3;C:\D\L\B4;C:\D\L\BF;C:\D\L\BF1;C:\D\L\BU;C:\D\L\BU1;C:\D\L\BU2;C:\D\L\C;C:\D\L\C1;C:\D\L\C2;C:\D\L\C3;C:\D\L\C5;C:\D\L\D;C:\D\L\D0;C:\D\L\D1;C:\D\L\D2;C:\D\L\D3;C:\D\L\D4;C:\D\L\D5;C:\D\L\D6;C:\D\L\D7;C:\D\L\D8;C:\D\L\D9;C:\D\L\DA;C:\D\L\DA1;C:\D\L\DA2;C:\D\L\G;C:\D\L\H;C:\D\L\HP;C:\D\L\I;C:\D\L\IC;C:\D\L\IC1;C:\D\L\J;C:\D\L\L;C:\D\L\L1;C:\D\L\L2;C:\D\L\L3;C:\D\L\L4;C:\D\L\L5;C:\D\L\L6;C:\D\L\L7;C:\D\L\M;C:\D\L\MI;C:\D\L\MO;C:\D\L\MS;C:\D\L\N;C:\D\L\N1;C:\D\L\N2;C:\D\L\N3;C:\D\L\N4;C:\D\L\N5;C:\D\L\N6;C:\D\L\N7;C:\D\L\N8;C:\D\L\N9;C:\D\L\ND;C:\D\L\NS;C:\D\L\NV;C:\D\L\NV1;C:\D\L\NV1\P\2K;C:\D\L\NV1\P\XP;C:\D\L\NV2;C:\D\L\NV3;C:\D\L\NV4;C:\D\L\NV5;C:\D\L\NV6;C:\D\L\NV7;C:\D\L\O;C:\D\L\O1;C:\D\L\O2;C:\D\L\O3;C:\D\L\O4;C:\D\L\O5;C:\D\L\O6;C:\D\L\R;C:\D\L\R1;C:\D\L\R2;C:\D\L\R4;C:\D\L\RS;C:\D\L\S;C:\D\L\S1;C:\D\L\S2;C:\D\L\S3;C:\D\L\S4;C:\D\L\S6;C:\D\L\S7;C:\D\L\S8;C:\D\L\SB;C:\D\L\SB1;C:\D\L\Sc;C:\D\L\Sc1;C:\D\L\Sc5;C:\D\L\Sc7;C:\D\L\Sc8;C:\D\L\Sc9;C:\D\L\SL;C:\D\L\SS;C:\D\L\SS2;C:\D\L\U;C:\D\L\U1;C:\D\L\U3;C:\D\L\U4;C:\D\L\U5;C:\D\L\V;C:\D\L\V1;C:\D\L\V2;C:\D\L\X;C:\D\L\X1;C:\D\L\Z;C:\D\M\3;C:\D\M\3B;C:\D\M\3C;C:\D\M\A;C:\D\M\A2;C:\D\M\A3;C:\D\M\A4;C:\D\M\A5;C:\D\M\A6;C:\D\M\A7;C:\D\M\A8;C:\D\M\AD;C:\D\M\AD2;C:\D\M\AD3;C:\D\M\AD4;C:\D\M\AD5;C:\D\M\AD6;C:\D\M\AD7;C:\D\M\AD8;C:\D\M\AD9;C:\D\M\ADA;C:\D\M\ADB;C:\D\M\ADC;C:\D\M\ADD;C:\D\M\AM;C:\D\M\AM0;C:\D\M\AM1;C:\D\M\AM2;C:\D\M\AM3;C:\D\M\AM4;C:\D\M\AM9;C:\D\M\AR;C:\D\M\AT;C:\D\M\AU;C:\D\M\AU2;C:\D\M\AU3;C:\D\M\B;C:\D\M\C;C:\D\M\C1;C:\D\M\C2;C:\D\M\C3;C:\D\M\C4;C:\D\M\D;C:\D\M\D1;C:\D\M\D3;C:\D\M\D4;C:\D\M\E;C:\D\M\H;C:\D\M\H1;C:\D\M\H10;C:\D\M\H11;C:\D\M\H12;C:\D\M\H1S;C:\D\M\H2;C:\D\M\H3;C:\D\M\H3K;C:\D\M\H3S;C:\D\M\H4;C:\D\M\H4K;C:\D\M\H4S;C:\D\M\H5;C:\D\M\H6;C:\D\M\H6S;C:\D\M\H7;C:\D\M\H7S;C:\D\M\H8;C:\D\M\H9;C:\D\M\H9S;C:\D\M\I;C:\D\M\I2;C:\D\M\I3;C:\D\M\I4;C:\D\M\I5;C:\D\M\I6;C:\D\M\I7;C:\D\M\I8;C:\D\M\IB;C:\D\M\IB3;C:\D\M\IB6;C:\D\M\IN;C:\D\M\IT;C:\D\M\IT\2k;C:\D\M\IT\2k3;C:\D\M\IT\XP;C:\D\M\IT1;C:\D\M\IT1\2K;C:\D\M\IT1\2k3;C:\D\M\J;C:\D\M\L;C:\D\M\L0;C:\D\M\L1;C:\D\M\L2;C:\D\M\L3;C:\D\M\L4;C:\D\M\L5;C:\D\M\L6;C:\D\M\L7;C:\D\M\L8;C:\D\M\L8r;C:\D\M\L9;C:\D\M\La;C:\D\M\Lb;C:\D\M\M;C:\D\M\M2;C:\D\M\M3;C:\D\M\M4;C:\D\M\M5;C:\D\M\N2;C:\D\M\N4;C:\D\M\N4I;C:\D\M\N5;C:\D\M\N6;C:\D\M\N6r;C:\D\M\N7;C:\D\M\N7r;C:\D\M\Nt;C:\D\M\P;C:\D\M\P\K;C:\D\M\P\S;C:\D\M\P1;C:\D\M\P1K;C:\D\M\P1S;C:\D\M\P2;C:\D\M\P2\K;C:\D\M\P2S;C:\D\M\P3;C:\D\M\P4;C:\D\M\P5;C:\D\M\P6;C:\D\M\P6K;C:\D\M\P6S;C:\D\M\P7;C:\D\M\P8;C:\D\M\P9;C:\D\M\PA;C:\D\M\PAS;C:\D\M\PC;C:\D\M\PD;C:\D\M\Q;C:\D\M\Q2;C:\D\M\Q3;C:\D\M\Q4;C:\D\M\S;C:\D\M\S2;C:\D\M\S2A;C:\D\M\S3;C:\D\M\S4;C:\D\M\S5;C:\D\M\S7;C:\D\M\S7A;C:\D\M\S7B;C:\D\M\S8;C:\D\M\S9;C:\D\M\SA;C:\D\M\SA2;C:\D\M\SB;C:\D\M\SB2;C:\D\M\SB3;C:\D\M\SB4;C:\D\M\SB5;C:\D\M\SC;C:\D\M\SC2;C:\D\M\SC3;C:\D\M\SC4;C:\D\M\SC5;C:\D\M\SS;C:\D\M\SS1;C:\D\M\SS2;C:\D\M\SS3;C:\D\M\T;C:\D\M\V;C:\D\M\V2;C:\D\M\V3;C:\D\M\V4;C:\D\M\VM;C:\D\P\A;C:\D\S\A;C:\D\S\A1;C:\D\S\AL;C:\D\S\AS;C:\D\S\AU;C:\D\S\C1;C:\D\S\C2;C:\D\S\C3;C:\D\S\C4;C:\D\S\C5;C:\D\S\C6;C:\D\S\C7;C:\D\S\C8;C:\D\S\CL;C:\D\S\CR;C:\D\S\CR1;C:\D\S\CR3;C:\D\S\CR4\Win2k_xp;C:\D\S\CRa;C:\D\S\CRa\winxp\bin;C:\D\S\CRb\Win2k_xp;C:\D\S\CT;C:\D\S\CT1;C:\D\S\CT2;C:\D\S\CT3;C:\D\S\E;C:\D\S\E1;C:\D\S\E2;C:\D\S\E3;C:\D\S\ES;C:\D\S\ES1;C:\D\S\H;C:\D\S\H1;C:\D\S\I;C:\D\S\I0;C:\D\S\I1;C:\D\S\I10;C:\D\S\I11;C:\D\S\I12;C:\D\S\I13;C:\D\S\I14;C:\D\S\I15;C:\D\S\I16;C:\D\S\I17;C:\D\S\I18;C:\D\S\I19;C:\D\S\I2;C:\D\S\I20;C:\D\S\I21;C:\D\S\I3;C:\D\S\I4;C:\D\S\I5;C:\D\S\I6;C:\D\S\I7;C:\D\S\I8;C:\D\S\I9;C:\D\S\M;C:\D\S\M0;C:\D\S\M1;C:\D\S\M2;C:\D\S\M3;C:\D\S\M4;C:\D\S\M5;C:\D\S\M6;C:\D\S\M7;C:\D\S\M8;C:\D\S\M9;C:\D\S\Ma;C:\D\S\Mb;C:\D\S\N;C:\D\S\N2;C:\D\S\R;C:\D\S\R1;C:\D\S\R2;C:\D\S\R3;C:\D\S\S;C:\D\S\S0;C:\D\S\S1;C:\D\S\S10;C:\D\S\S11;C:\D\S\S12;C:\D\S\S13;C:\D\S\S14;C:\D\S\S15;C:\D\S\S16;C:\D\S\S17;C:\D\S\S18;C:\D\S\S19;C:\D\S\S2;C:\D\S\S20;C:\D\S\S21;C:\D\S\S22;C:\D\S\S25;C:\D\S\S26;C:\D\S\S27;C:\D\S\S28;C:\D\S\S29;C:\D\S\S3;C:\D\S\S30;C:\D\S\S31;C:\D\S\S32;C:\D\S\S33;C:\D\S\S34;C:\D\S\S35;C:\D\S\S36;C:\D\S\S37;C:\D\S\S38;C:\D\S\S39;C:\D\S\S4;C:\D\S\S5;C:\D\S\S6;C:\D\S\S7;C:\D\S\S8;C:\D\S\S9;C:\D\S\Sa;C:\D\S\Sb;C:\D\S\Sc;C:\D\S\Sd;C:\D\S\Se;C:\D\S\Sf;C:\D\S\Sg;C:\D\S\Sh;C:\D\S\Si;C:\D\S\Sj;C:\D\S\Sk;C:\D\S\Sl;C:\D\S\Sm;C:\D\S\Sn;C:\D\S\So;C:\D\S\Sp;C:\D\S\Sq;C:\D\S\Sr;C:\D\S\SS;C:\D\S\SS2;C:\D\S\T;C:\D\S\T1;C:\D\S\T2;C:\D\S\TB;C:\D\S\TR;C:\D\S\V1;C:\D\S\V2;C:\D\S\V3;C:\D\S\X;C:\D\S\X0;C:\D\S\X1;C:\D\S\X11;C:\D\S\X12;C:\D\S\X13;C:\D\S\X14;C:\D\S\X15;C:\D\S\X16;C:\D\S\X17;C:\D\S\X18;C:\D\S\X19;C:\D\S\X2;C:\D\S\X20;C:\D\S\X21;C:\D\S\X22;C:\D\S\X23;C:\D\S\X24;C:\D\S\X25;C:\D\S\X26;C:\D\S\X3;C:\D\S\X4;C:\D\S\X5;C:\D\S\X6;C:\D\S\X7;C:\D\S\X8;C:\D\S\X9;C:\D\S\Y;C:\D\S\Y1;C:\D\W\3;C:\D\W\3a;C:\D\W\3b;C:\D\W\3c;C:\D\W\3e;C:\D\W\3f;C:\D\W\A;C:\D\W\A2;C:\D\W\A4;C:\D\W\AL;C:\D\W\AS;C:\D\W\At;C:\D\W\At1;C:\D\W\AtF;C:\D\W\AV;C:\D\W\B;C:\D\W\B1;C:\D\W\B2;C:\D\W\B3;C:\D\W\B4;C:\D\W\B5;C:\D\W\B6;C:\D\W\B8;C:\D\W\B9;C:\D\W\BL;C:\D\W\BL3;C:\D\W\BL4;C:\D\W\BL5;C:\D\W\BL6;C:\D\W\Br;C:\D\W\Br0;C:\D\W\Br3;C:\D\W\Br7;C:\D\W\Br8;C:\D\W\BU;C:\D\W\BU1;C:\D\W\BU2;C:\D\W\BU3;C:\D\W\BU4;C:\D\W\BU5;C:\D\W\BU7;C:\D\W\BU8;C:\D\W\C;C:\D\W\C3;C:\D\W\CL;C:\D\W\Co;C:\D\W\Cr;C:\D\W\Cr2;C:\D\W\Cr3;C:\D\W\Cr4;C:\D\W\D;C:\D\W\D1;C:\D\W\D2;C:\D\W\D3;C:\D\W\D4;C:\D\W\D5;C:\D\W\D6;C:\D\W\D7;C:\D\W\D8;C:\D\W\DA;C:\D\W\DB;C:\D\W\DF;C:\D\W\DG;C:\D\W\DL;C:\D\W\E;C:\D\W\E1;C:\D\W\E2;C:\D\W\E6;C:\D\W\E8;C:\D\W\EC;C:\D\W\EH;C:\D\W\Es;C:\D\W\G;C:\D\W\G2;C:\D\W\H;C:\D\W\I;C:\D\W\I1;C:\D\W\I2;C:\D\W\I3;C:\D\W\I4;C:\D\W\I5;C:\D\W\I6;C:\D\W\I7;C:\D\W\Ib;C:\D\W\IS;C:\D\W\L;C:\D\W\L0;C:\D\W\L1;C:\D\W\L2;C:\D\W\L3;C:\D\W\L4;C:\D\W\L5;C:\D\W\L6;C:\D\W\L7;C:\D\W\L8;C:\D\W\L9;C:\D\W\La;C:\D\W\Lb;C:\D\W\Lc;C:\D\W\Ld;C:\D\W\Le;C:\D\W\Lf;C:\D\W\Lg;C:\D\W\Lh;C:\D\W\Lm;C:\D\W\Lm1;C:\D\W\Lm2;C:\D\W\Lx;C:\D\W\M;C:\D\W\MI;C:\D\W\MT;C:\D\W\N1;C:\D\W\N2;C:\D\W\N3;C:\D\W\N4;C:\D\W\N6;C:\D\W\N8;C:\D\W\N9;C:\D\W\NA;C:\D\W\NB;C:\D\W\NC;C:\D\W\ND;C:\D\W\NH;C:\D\W\No;C:\D\W\o;C:\D\W\o2;C:\D\W\o3;C:\D\W\P;C:\D\W\Pr;C:\D\W\R;C:\D\W\R1;C:\D\W\R2;C:\D\W\R3;C:\D\W\R4;C:\D\W\R5;C:\D\W\R6;C:\D\W\R7;C:\D\W\R8;C:\D\W\R9;C:\D\W\RE;C:\D\W\RE1;C:\D\W\RE2;C:\D\W\RE3;C:\D\W\RE4;C:\D\W\RE5;C:\D\W\RE6;C:\D\W\S;C:\D\W\S0;C:\D\W\S1;C:\D\W\S2;C:\D\W\S3;C:\D\W\S4;C:\D\W\S5;C:\D\W\S6;C:\D\W\S7;C:\D\W\S8;C:\D\W\S9;C:\D\W\Sa;C:\D\W\Sc1;C:\D\W\Sc2;C:\D\W\Sc5;C:\D\W\Sc6;C:\D\W\Sc8;C:\D\W\ScB;C:\D\W\ScD;C:\D\W\Sg;C:\D\W\SI;C:\D\W\Si2;C:\D\W\Si3;C:\D\W\Siu;C:\D\W\Su;C:\D\W\Su2;C:\D\W\Su4;C:\D\W\Su5;C:\D\W\Su8;C:\D\W\SuB;C:\D\W\SuC;C:\D\W\SuE;C:\D\W\T;C:\D\W\T2;C:\D\W\T3;C:\D\W\TO;C:\D\W\TP;C:\D\W\U;C:\D\W\U2;C:\D\W\U3;C:\D\W\U4;C:\D\W\U5;C:\D\W\U6;C:\D\W\U7;C:\D\W\V;C:\D\W\V2;C:\D\W\W;C:\D\W\X;C:\D\W\X2;C:\D\W\X7;C:\D\W\Z;C:\D\W\Z1;C:\D\W\Z2;C:\D\W\Z4;C:\D\W\ZC

8397 symbols - i've just replaced "%SystemDrive%" with "C:\"
3. DevicePath

%SystemRoot%\inf;C:\D\G\3;C:\D\G\3a;C:\D\G\3b;C:\D\G\3b\TV;C:\D\G\A;C:\D\G\A\W;C:\D\G\A1;C:\D\G\A1\W;C:\D\G\A2;C:\D\G\A3;C:\D\G\A4;C:\D\G\A7;C:\D\G\A8;C:\D\G\AD;C:\D\G\As;C:\D\G\I;C:\D\G\I0;C:\D\G\I1;C:\D\G\I2;C:\D\G\I3;C:\D\G\I4;C:\D\G\I5;C:\D\G\I6;C:\D\G\I7;C:\D\G\I8;C:\D\G\I9;C:\D\G\IA;C:\D\G\M;C:\D\G\M1;C:\D\G\N;C:\D\G\N1;C:\D\G\N2;C:\D\G\N8;C:\D\G\P;C:\D\G\S3;C:\D\G\S3a;C:\D\G\S3b;C:\D\G\S3c;C:\D\G\S3d;C:\D\G\S3e;C:\D\G\S3f;C:\D\G\S3g;C:\D\G\Sa;C:\D\G\Sb;C:\D\G\Sc;C:\D\G\Sd;C:\D\G\Se;C:\D\G\sf;C:\D\G\T1;C:\D\G\T2;C:\D\G\TR;C:\D\G\V;C:\D\G\V1;C:\D\G\V2;C:\D\G\V3;C:\D\G\V4;C:\D\G\V5;C:\D\G\V6;C:\D\G\V7;C:\D\G\V8;C:\D\G\V9;C:\D\G\Va;C:\D\G\Vb;C:\D\G\X;C:\D\G\x2

689 symbols - Only Graphics packs string was left
And DevicePath was never resetted or cleaned after DpsFnshr.exe successfully exists.

Early here we discussed that Nvidia GPU driver do not installs CPL with SAD.
Please correct me if I'm wrong - DpsFnshr installs the contents( stuff like configuring software & tray apps ) that belongs to drivers and do not installs with .inf-file directives.
DpsFnshr.exe creates file "hwids.dat" on C:\ and deletes it after exit. I've caugth this file hour ago and looked inside. Here is the contents

ACPI\ATK0110\1010110                                        : ATK0110 ACPI UTILITY
ACPI\FIXEDBUTTON\2&DABA3FF&0                                : ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_0                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_1                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\INT0800\4&2BC541BA&0                                   : Intel(R) 82802 Firmware ACPI\PNP0000\4&2BC541BA&0                                   : ACPI\PNP0100\4&2BC541BA&0                                   : ACPI\PNP0103\4&2BC541BA&0                                   : High Precision Event Timer
ACPI\PNP0200\4&2BC541BA&0                                   : ACPI\PNP0501\1                                              : ACPI\PNP0800\4&2BC541BA&0                                   : ACPI\PNP0A08\0                                              : ACPI\PNP0B00\4&2BC541BA&0                                   : CMOS ACPI\PNP0C01\1                                              : ACPI\PNP0C01\A                                              : ACPI\PNP0C02\0                                              : ACPI\PNP0C02\10                                             : ACPI\PNP0C02\11                                             : ACPI\PNP0C02\2E                                             : ACPI\PNP0C02\3                                              : ACPI\PNP0C04\4&2BC541BA&0                                   : ACPI\PNP0C0C\AA                                             : ACPI_HAL\PNP0C08\0                                          : Microsoft ACPI-DISPLAY\ACR004C\5&3A2B6592&0&11335577&01&00                 : DTSOFTBUS&REV1\DTCDROM&REV1\1&2D12BED1&0&00                 : DTSoftBusCd00
HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438311&REV_1003\4&21B9C98F&0&0001: SoundMAX Integrated Digital HD Audio
HID\VID_045E&PID_0745&MI_00\7&369EE6A&0&0000                : Microsoft USB Dual Receiver Wireless Keyboard (IntelliType Pro)
HID\VID_045E&PID_0745&MI_01&COL01\7&1B2D7AAF&0&0000         : Microsoft USB Dual Receiver Wireless Mouse (IntelliPoint)
HID\VID_045E&PID_0745&MI_01&COL02\7&1B2D7AAF&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL01\7&32F106F4&0&0000         : HID-HID\VID_045E&PID_0745&MI_02&COL02\7&32F106F4&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL03\7&32F106F4&0&0002         : HID-HID\VID_045E&PID_0745&MI_02&COL04\7&32F106F4&0&0003         : HID-IDE\CDROMOPTIARC_DVD_RW_AD-7243S_________________1.01____\5&5C6CFD6&0&0.1.0: Optiarc DVD RW AD-7243S
ISAPNP\READDATAPORT\0                                       : PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+
PCI\VEN_11AB&DEV_4320&SUBSYS_811A1043&REV_14\4&31B6CD7&0&10F0: Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&20515DB1&0&00E5: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B1\4&34EBACD6&0&00E4: Marvell 61xx RAID Controller
PCI\VEN_11C1&DEV_5811&SUBSYS_82941043&REV_70\4&31B6CD7&0&18F0: OHCI-PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_90\3&11583659&0&F0: Intel(R) 82801 PCI Bridge - 244E
PCI\VEN_8086&DEV_2E20&SUBSYS_00000000&REV_03\3&11583659&0&00: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E20
PCI\VEN_8086&DEV_2E21&SUBSYS_00000000&REV_03\3&11583659&0&08: Intel(R) 4 Series Chipset PCI Express Root Port - 2E21
PCI\VEN_8086&DEV_3A16&SUBSYS_00000000&REV_00\3&11583659&0&F8: Intel(R) ICH10R LPC Interface Controller - 3A16
PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00\3&11583659&0&FA: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
PCI\VEN_8086&DEV_3A30&SUBSYS_82D41043&REV_00\3&11583659&0&FB: Intel(R) ICH10 Family SMBus Controller - 3A30
PCI\VEN_8086&DEV_3A34&SUBSYS_82D41043&REV_00\3&11583659&0&E8: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
PCI\VEN_8086&DEV_3A35&SUBSYS_82D41043&REV_00\3&11583659&0&E9: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
PCI\VEN_8086&DEV_3A36&SUBSYS_82D41043&REV_00\3&11583659&0&EA: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
PCI\VEN_8086&DEV_3A37&SUBSYS_82D41043&REV_00\3&11583659&0&D0: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
PCI\VEN_8086&DEV_3A38&SUBSYS_82D41043&REV_00\3&11583659&0&D1: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
PCI\VEN_8086&DEV_3A39&SUBSYS_82D41043&REV_00\3&11583659&0&D2: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
PCI\VEN_8086&DEV_3A3A&SUBSYS_82D41043&REV_00\3&11583659&0&EF: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
PCI\VEN_8086&DEV_3A3C&SUBSYS_82D41043&REV_00\3&11583659&0&D7: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
PCI\VEN_8086&DEV_3A3E&SUBSYS_83111043&REV_00\3&11583659&0&D8: PCI\VEN_8086&DEV_3A40&SUBSYS_00000000&REV_00\3&11583659&0&E0: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
PCI\VEN_8086&DEV_3A48&SUBSYS_00000000&REV_00\3&11583659&0&E4: Intel(R) ICH10 Family PCI Express Root Port 5 - 3A48
PCI\VEN_8086&DEV_3A4A&SUBSYS_00000000&REV_00\3&11583659&0&E5: Intel(R) ICH10 Family PCI Express Root Port 6 - 3A4A
PCIIDE\IDECHANNEL\4&3189A216&0&0                            : PCIIDE\IDECHANNEL\4&3189A216&0&1                            : PCIIDE\IDECHANNEL\4&38D74911&0&0                            : PCIIDE\IDECHANNEL\4&38D74911&0&1                            : ROOT\ACPI_HAL\0000                                          : ROOT\CNTX_VPCNETS2_MP\0000                                  : 802.11n Network Adapter - Virtual Machine Network Services Driver
ROOT\CNTX_VPCNETS2_MP\0001                                  : Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller - Virtual Machine Network Services Driver
ROOT\CNTX_VPCNETS2_MP\0002                                  : Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller - Virtual Machine Network Services Driver
ROOT\DMIO\0000                                              : ROOT\FTDISK\0000                                            : ROOT\LEGACY_ABP480N5\0000                                   : abp480n5
ROOT\LEGACY_ADPU160M\0000                                   : adpu160m
ROOT\LEGACY_AFD\0000                                        : AFD
ROOT\LEGACY_AGP440\0000                                     : Intel - ROOT\LEGACY_AGPCPQ\0000                                     : Compaq - ROOT\LEGACY_AHA154X\0000                                    : Aha154x
ROOT\LEGACY_AIC78U2\0000                                    : aic78u2
ROOT\LEGACY_AIC78XX\0000                                    : aic78xx
ROOT\LEGACY_ALIIDE\0000                                     : AliIde
ROOT\LEGACY_ALIM1541\0000                                   : ALI - ROOT\LEGACY_AMDAGP\0000                                     : AMD - ROOT\LEGACY_AMSINT\0000                                     : amsint
ROOT\LEGACY_ARP1394\0000                                    : ROOT\LEGACY_ASC\0000                                        : asc
ROOT\LEGACY_ASC3350P\0000                                   : asc3350p
ROOT\LEGACY_ASC3550\0000                                    : asc3550
ROOT\LEGACY_BEEP\0000                                       : Beep
ROOT\LEGACY_CBIDF\0000                                      : cbidf
ROOT\LEGACY_CD20XRNT\0000                                   : cd20xrnt
ROOT\LEGACY_CMDIDE\0000                                     : CmdIde
ROOT\LEGACY_CPQARRAY\0000                                   : Cpqarray
ROOT\LEGACY_DAC2W2K\0000                                    : dac2w2k
ROOT\LEGACY_DAC960NT\0000                                   : dac960nt
ROOT\LEGACY_DMBOOT\0000                                     : dmboot
ROOT\LEGACY_DMLOAD\0000                                     : dmload
ROOT\LEGACY_DPTI2O\0000                                     : dpti2o
ROOT\LEGACY_EIO_XP\0000                                     : EIO_XP
ROOT\LEGACY_FIPS\0000                                       : Fips
ROOT\LEGACY_GPC\0000                                        : ROOT\LEGACY_HPN\0000                                        : hpn
ROOT\LEGACY_HTTP\0000                                       : HTTP
ROOT\LEGACY_I2OMGMT\0000                                    : i2omgmt
ROOT\LEGACY_I2OMP\0000                                      : i2omp
ROOT\LEGACY_INI910U\0000                                    : ini910u
ROOT\LEGACY_IPNAT\0000                                      : ROOT\LEGACY_IPSEC\0000                                      : ROOT\LEGACY_KSECDD\0000                                     : ksecdd
ROOT\LEGACY_MNMDD\0000                                      : mnmdd
ROOT\LEGACY_MOUNTMGR\0000                                   : mountmgr
ROOT\LEGACY_MRAID35X\0000                                   : mraid35x
ROOT\LEGACY_NDIS\0000                                       : ROOT\LEGACY_NDISTAPI\0000                                   : NDIS-ROOT\LEGACY_NDISUIO\0000                                    : NDIS-ROOT\LEGACY_NDPROXY\0000                                    : NDProxy
ROOT\LEGACY_NETBT\0000                                      : NetBios ROOT\LEGACY_NULL\0000                                       : Null
ROOT\LEGACY_PARTMGR\0000                                    : PartMgr
ROOT\LEGACY_PARVDM\0000                                     : ParVdm
ROOT\LEGACY_PCIIDE\0000                                     : PCIIde
ROOT\LEGACY_PERC2\0000                                      : perc2
ROOT\LEGACY_PERC2HIB\0000                                   : perc2hib
ROOT\LEGACY_QL1080\0000                                     : ql1080
ROOT\LEGACY_QL10WNT\0000                                    : Ql10wnt
ROOT\LEGACY_QL12160\0000                                    : ql12160
ROOT\LEGACY_QL1240\0000                                     : ql1240
ROOT\LEGACY_QL1280\0000                                     : ql1280
ROOT\LEGACY_RASACD\0000                                     : ROOT\LEGACY_RDPCDD\0000                                     : RDPCDD
ROOT\LEGACY_SISAGP\0000                                     : SIS - ROOT\LEGACY_SPARROW\0000                                    : Sparrow
ROOT\LEGACY_SYMC810\0000                                    : symc810
ROOT\LEGACY_SYMC8XX\0000                                    : symc8xx
ROOT\LEGACY_SYM_HI\0000                                     : sym_hi
ROOT\LEGACY_SYM_U3\0000                                     : sym_u3
ROOT\LEGACY_TCPIP\0000                                      : ROOT\LEGACY_TDRPMAN\0000                                    : Acronis Try&Decide and Restore Points filter
ROOT\LEGACY_TOSIDE\0000                                     : TosIde
ROOT\LEGACY_ULTRA\0000                                      : ultra
ROOT\LEGACY_VGASAVE\0000                                    : VgaSave
ROOT\LEGACY_VIAAGP\0000                                     : VIA - ROOT\LEGACY_VIAIDE\0000                                     : ViaIde
ROOT\LEGACY_VMM\0000                                        : Virtual Machine Monitor
ROOT\LEGACY_VMSCSI\0000                                     : vmscsi
ROOT\LEGACY_VOLSNAP\0000                                    : VolSnap
ROOT\LEGACY_WANARP\0000                                     : ROOT\LEGACY_WDF01000\0000                                   : Kernel Mode Driver Frameworks service
ROOT\MEDIA\MS_MMACM                                         : ROOT\MEDIA\MS_MMDRV                                         : ROOT\MEDIA\MS_MMMCI                                         : ROOT\MEDIA\MS_MMVCD                                         : ROOT\MEDIA\MS_MMVID                                         : ROOT\MS_L2TPMINIPORT\0000                                   : ROOT\MS_NDISWANIP\0000                                      : ROOT\MS_PPPOEMINIPORT\0000                                  : ROOT\MS_PPTPMINIPORT\0000                                   : ROOT\MS_PSCHEDMP\0000                                       : ROOT\MS_PSCHEDMP\0001                                       : Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller - ROOT\MS_PSCHEDMP\0002                                       : Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller - ROOT\MS_PSCHEDMP\0003                                       : 802.11n Network Adapter - ROOT\MS_PTIMINIPORT\0000                                    : ROOT\RDPDR\0000                                             : ROOT\RDP_KBD\0000                                           : ROOT\RDP_MOU\0000                                           : ROOT\SEAGATEDEVICES\0000                                    : Seagate DiscWizard Image Backup Archive Explorer
ROOT\SYSTEM\0000                                            : ROOT\SYSTEM\0001                                            : ROOT\SYSTEM\0002                                            : ROOT\SYSTEM\0003                                            : DAEMON Tools Virtual Bus Driver
SCSI\ARRAY&VEN_MARVELL&PROD_VIRTUAL_DEVICE&REV_1.00\5&3B49150A&0&0140: Marvell Virtual Device
SCSI\DISK&VEN_WDC_WD80&PROD_0JB-00JJC0&REV_\5&3B49150A&0&000: WDC WD80 0JB-00JJC0 SCSI Disk Device
STORAGE\REMOVABLEMEDIA\7&3AC2A2B2&0&RM                      : STORAGE\VOLUME\1&30A96598&0&SIGNATURE51135113OFFSET3E8246E00LENGTHEB9279200: STORAGE\VOLUME\1&30A96598&0&SIGNATURE51135113OFFSET7E00LENGTH3E7A5F000: SW\{A7C7A5B0-5AF3-11D1-9CED-00A024BF0407}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{B7EAFDC0-A680-11D0-96D8-00AA0051E51D}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{CD171DE3-69E5-11D2-B56D-0000F8754380}\{9B365890-165F-11D0-A195-0020AFD156E4}: SW\{EEAB7790-C514-11D1-B42B-00805FC1270E}\ASYNCMAC          : RAS USB\ROOT_HUB\4&14D59EDA&0                                   : USB\ROOT_HUB\4&1BD273F9&0                                   : USB\ROOT_HUB\4&1D34232F&0                                   : USB\ROOT_HUB\4&3141BC6C&0                                   : USB\ROOT_HUB\4&33D5EF4B&0                                   : USB\ROOT_HUB\4&67E9D0C&0                                    : USB\ROOT_HUB20\4&290CAFBE&0                                 : USB\ROOT_HUB20\4&3097EDFD&0                                 : USB\VID_0324&PID_BC08\AA04012700007437                      : USB\VID_045E&PID_0745\5&35EDA8E7&0&1                        : Microsoft Mouse and Keyboard Detection Driver (USB)
USB\VID_045E&PID_0745&MI_00\6&18E82B6A&0&0000               : USB HID-USB\VID_045E&PID_0745&MI_01\6&18E82B6A&0&0001               : USB HID-USB\VID_045E&PID_0745&MI_02\6&18E82B6A&0&0002               : USB HID-USB\VID_0B05&PID_1742\1.0                                   : 802.11n Network Adapter
USB\VID_16D5&PID_6502\5&385A3465&0&2                        : USB\VID_16D5&PID_6502&MI_00\6&1C652A50&0&0000               : AnyDATA CDMA USB Modem (PID 6502)
USB\VID_16D5&PID_6502&MI_01\6&1C652A50&0&0001               : AnyDATA CDMA USB Serial 1 (DIAG) Device (PID 6502) (COM4)
USB\VID_16D5&PID_6502&MI_02\6&1C652A50&0&0002               : AnyDATA CDMA USB Serial 2 (NMEA) Device (PID 6502) (COM5)
USB\VID_16D5&PID_6502&MI_03\6&1C652A50&0&0003               : USBSTOR\CDROM&VEN_ANYDATA&PROD_CD-ROM&REV_1.00\7&224B8020&0 : AnyDATA CD-ROM USB Device
USBSTOR\DISK&VEN_OCZ&PROD_RALLY2&REV_1100\AA04012700007437&0: OCZ RALLY2 USB Device
V1394\NIC1394\17CF51D1E8C00                                 : 198 matching device(s) found.

I've found that string:
ISAPNP\READDATAPORT\0 : PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+
And launched text search in all driverpacks [C:\D\] to search every .inf-file for "ISAPNP\READDATAPORT\0" and "PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008" strings.
And it found no matches, i thought this can be usefull. Correct me if i'm wrong.

My FindHwids results is the same:

=========== 
PCI Devices 
=========== 
PCI\VEN_10DE&DEV_0612&SUBSYS_82A81043&REV_A2\4&399D3C6A&0&0008: NVIDIA GeForce 9800 GTX/9800 GTX+
PCI\VEN_11AB&DEV_4320&SUBSYS_811A1043&REV_14\4&31B6CD7&0&10F0: Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&20515DB1&0&00E5: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller
PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B1\4&34EBACD6&0&00E4: Marvell 61xx RAID Controller
PCI\VEN_11C1&DEV_5811&SUBSYS_82941043&REV_70\4&31B6CD7&0&18F0: OHCI-PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_90\3&11583659&0&F0: Intel(R) 82801 PCI Bridge - 244E
PCI\VEN_8086&DEV_2E20&SUBSYS_00000000&REV_03\3&11583659&0&00: Intel(R) 4 Series Chipset Processor to I/O Controller - 2E20
PCI\VEN_8086&DEV_2E21&SUBSYS_00000000&REV_03\3&11583659&0&08: Intel(R) 4 Series Chipset PCI Express Root Port - 2E21
PCI\VEN_8086&DEV_3A16&SUBSYS_00000000&REV_00\3&11583659&0&F8: Intel(R) ICH10R LPC Interface Controller - 3A16
PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00\3&11583659&0&FA: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
PCI\VEN_8086&DEV_3A30&SUBSYS_82D41043&REV_00\3&11583659&0&FB: Intel(R) ICH10 Family SMBus Controller - 3A30
PCI\VEN_8086&DEV_3A34&SUBSYS_82D41043&REV_00\3&11583659&0&E8: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
PCI\VEN_8086&DEV_3A35&SUBSYS_82D41043&REV_00\3&11583659&0&E9: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
PCI\VEN_8086&DEV_3A36&SUBSYS_82D41043&REV_00\3&11583659&0&EA: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
PCI\VEN_8086&DEV_3A37&SUBSYS_82D41043&REV_00\3&11583659&0&D0: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
PCI\VEN_8086&DEV_3A38&SUBSYS_82D41043&REV_00\3&11583659&0&D1: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
PCI\VEN_8086&DEV_3A39&SUBSYS_82D41043&REV_00\3&11583659&0&D2: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
PCI\VEN_8086&DEV_3A3A&SUBSYS_82D41043&REV_00\3&11583659&0&EF: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
PCI\VEN_8086&DEV_3A3C&SUBSYS_82D41043&REV_00\3&11583659&0&D7: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
PCI\VEN_8086&DEV_3A3E&SUBSYS_83111043&REV_00\3&11583659&0&D8: PCI\VEN_8086&DEV_3A40&SUBSYS_00000000&REV_00\3&11583659&0&E0: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
PCI\VEN_8086&DEV_3A48&SUBSYS_00000000&REV_00\3&11583659&0&E4: Intel(R) ICH10 Family PCI Express Root Port 5 - 3A48
PCI\VEN_8086&DEV_3A4A&SUBSYS_00000000&REV_00\3&11583659&0&E5: Intel(R) ICH10 Family PCI Express Root Port 6 - 3A4A
24 matching device(s) found.
 
=========== 
USB Devices 
=========== 
USB\ROOT_HUB\4&14D59EDA&0                                   : USB\ROOT_HUB\4&1BD273F9&0                                   : USB\ROOT_HUB\4&1D34232F&0                                   : USB\ROOT_HUB\4&3141BC6C&0                                   : USB\ROOT_HUB\4&33D5EF4B&0                                   : USB\ROOT_HUB\4&67E9D0C&0                                    : USB\ROOT_HUB20\4&290CAFBE&0                                 : USB\ROOT_HUB20\4&3097EDFD&0                                 : USB\VID_0324&PID_BC08\AA04012700007437                      : USB\VID_045E&PID_0745\5&35EDA8E7&0&1                        : Microsoft Mouse and Keyboard Detection Driver (USB)
USB\VID_045E&PID_0745&MI_00\6&18E82B6A&0&0000               : USB HID-USB\VID_045E&PID_0745&MI_01\6&18E82B6A&0&0001               : USB HID-USB\VID_045E&PID_0745&MI_02\6&18E82B6A&0&0002               : USB HID-USB\VID_0482&PID_000E\XAX4246811                            : USB\VID_0B05&PID_1742\1.0                                   : 802.11n Network Adapter
USB\VID_16D5&PID_6502\5&23B074A8&0&2                        : USB\VID_16D5&PID_6502&MI_00\6&3B086DEE&0&0000               : AnyDATA CDMA USB Modem (PID 6502)
USB\VID_16D5&PID_6502&MI_01\6&3B086DEE&0&0001               : AnyDATA CDMA USB Serial 1 (DIAG) Device (PID 6502) (COM4)
USB\VID_16D5&PID_6502&MI_02\6&3B086DEE&0&0002               : AnyDATA CDMA USB Serial 2 (NMEA) Device (PID 6502) (COM5)
USB\VID_16D5&PID_6502&MI_03\6&3B086DEE&0&0003               : USBPRINT\KYOCERAFS-1020D\6&7EB4782&0&USB001                 : KyoceraFS-1020D
USBSTOR\CDROM&VEN_ANYDATA&PROD_CD-ROM&REV_1.00\7&1828F4F1&0 : AnyDATA CD-ROM USB Device
USBSTOR\DISK&VEN_OCZ&PROD_RALLY2&REV_1100\AA04012700007437&0: OCZ RALLY2 USB Device
23 matching device(s) found.
 
============= 
Input Devices 
============= 
HID\VID_045E&PID_0745&MI_00\7&369EE6A&0&0000                : Microsoft USB Dual Receiver Wireless Keyboard (IntelliType Pro)
HID\VID_045E&PID_0745&MI_01&COL01\7&1B2D7AAF&0&0000         : Microsoft USB Dual Receiver Wireless Mouse (IntelliPoint)
HID\VID_045E&PID_0745&MI_01&COL02\7&1B2D7AAF&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL01\7&32F106F4&0&0000         : HID-HID\VID_045E&PID_0745&MI_02&COL02\7&32F106F4&0&0001         : HID-HID\VID_045E&PID_0745&MI_02&COL03\7&32F106F4&0&0002         : HID-HID\VID_045E&PID_0745&MI_02&COL04\7&32F106F4&0&0003         : HID-7 matching device(s) found.
 
============ 
ACPI Devices 
============ 
ACPI\ATK0110\1010110                                        : ATK0110 ACPI UTILITY
ACPI\FIXEDBUTTON\2&DABA3FF&0                                : ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_0                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\GENUINEINTEL_-_X86_FAMILY_6_MODEL_23\_1                : Intel(R) Core(TM)2 Duo CPU     E8200  @ 2.66GHz
ACPI\INT0800\4&2BC541BA&0                                   : Intel(R) 82802 Firmware ACPI\PNP0000\4&2BC541BA&0                                   : ACPI\PNP0100\4&2BC541BA&0                                   : ACPI\PNP0103\4&2BC541BA&0                                   : High Precision Event Timer
ACPI\PNP0200\4&2BC541BA&0                                   : ACPI\PNP0501\1                                              : ACPI\PNP0800\4&2BC541BA&0                                   : ACPI\PNP0A08\0                                              : ACPI\PNP0B00\4&2BC541BA&0                                   : CMOS ACPI\PNP0C01\1                                              : ACPI\PNP0C01\A                                              : ACPI\PNP0C02\0                                              : ACPI\PNP0C02\10                                             : ACPI\PNP0C02\11                                             : ACPI\PNP0C02\2E                                             : ACPI\PNP0C02\3                                              : ACPI\PNP0C04\4&2BC541BA&0                                   : ACPI\PNP0C0C\AA                                             : ACPI_HAL\PNP0C08\0                                          : Microsoft ACPI-ROOT\ACPI_HAL\0000                                          : 24 matching device(s) found.
 
============ 
 HDA Audio 
============ 
HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438311&REV_1003\4&21B9C98F&0&0001: SoundMAX Integrated Digital HD Audio
1 matching device(s) found.
 
============ 
RAID Devices 
============ 
PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B1\4&34EBACD6&0&00E4
    Name: Marvell 61xx RAID Controller
    Hardware ID's:
        PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B1
        PCI\VEN_11AB&DEV_6121&SUBSYS_82121043
        PCI\VEN_11AB&DEV_6121&CC_01018F
        PCI\VEN_11AB&DEV_6121&CC_0101
    Compatible ID's:
        PCI\VEN_11AB&DEV_6121&REV_B1
        PCI\VEN_11AB&DEV_6121
        PCI\VEN_11AB&CC_01018F
        PCI\VEN_11AB&CC_0101
        PCI\VEN_11AB
        PCI\CC_01018F
        PCI\CC_0101
PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00\3&11583659&0&FA
    Name: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
    Hardware ID's:
        PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00
        PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043
        PCI\VEN_8086&DEV_3A20&CC_01018A
        PCI\VEN_8086&DEV_3A20&CC_0101
    Compatible ID's:
        PCI\VEN_8086&DEV_3A20&REV_00
        PCI\VEN_8086&DEV_3A20
        PCI\VEN_8086&CC_01018A
        PCI\VEN_8086&CC_0101
        PCI\VEN_8086
        PCI\CC_01018A
        PCI\CC_0101
PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD
    Name: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
    Hardware ID's:
        PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00
        PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043
        PCI\VEN_8086&DEV_3A26&CC_010185
        PCI\VEN_8086&DEV_3A26&CC_0101
    Compatible ID's:
        PCI\VEN_8086&DEV_3A26&REV_00
        PCI\VEN_8086&DEV_3A26
        PCI\VEN_8086&CC_010185
        PCI\VEN_8086&CC_0101
        PCI\VEN_8086
        PCI\CC_010185
        PCI\CC_0101
3 matching device(s) found.

16

(109 replies, posted in Universal Imaging)

Not really, i mean if we have path for massstorage driver folder in DevicePath before running "sysprep -bmsd" or in other way with "BuildMassStorageSection = Yes" string in sysprep.inf - sysprep will scan all folders in DevicePath for a massstorage drivers but I don't know the criteria sysprep using to filter drivers that don't belong to massstorage. That .inf's:

pci\ven_104b&dev_1040=c:\d\m\vm\vmscsi.inf
pci\ven_1000&dev_0030=c:\d\m\la\lsi_scsi.inf
pci\ven_1000&dev_0032=c:\d\m\la\lsi_scsi.inf

was "approved" by sysprep as massstorage controller non plug and play drivers, but other driver wasn't. So I thought that if we could know that criteria - we can update another .inf's that we need there to get sysprep(not other tool) to automize the process.
Finally i think "more tools - more bugs" and DevPath.exe with FindHWIDS are great tools, and as all other great tools it have great bugs smile With all respect to authors I don't really need it since I know that I can bypass it.

17

(109 replies, posted in Universal Imaging)

Thank you, but I don't really care about DevPath.exe, it's not hard to make a DevicePath string once per driverpacks update.
Have you look at previous page, at this post? This is what i really care about. If we could know how sysprep handles those drivers maybe we can put some text in other massstorage drivers and make sysprep work for us in this case.

18

(109 replies, posted in Universal Imaging)

And few words about DevPath.exe and all main driverpacks
DevicePath value now

%SystemRoot%\inf

After extracting all main driverpacks - the "C:\D" folder contains: C G L M P S W folders.
After running "DevPath.exe C:\D" device path value is

%SystemRoot%\Inf;C:\D\C\A;C:\D\C\A2;C:\D\C\A4;C:\D\C\A5;C:\D\C\A6;C:\D\C\A7;C:\D\C\Ak;C:\D\C\AM;C:\D\C\At;C:\D\C\D;C:\D\C\E;C:\D\C\E1;C:\D\C\F;C:\D\C\H;C:\D\C\I;C:\D\C\I2\1;C:\D\C\I2\2;C:\D\C\I2\3;C:\D\C\I2\4;C:\D\C\I2\5;C:\D\C\I2\7;C:\D\C\I2;C:\D\C\I4;C:\D\C\I5;C:\D\C\Ia;C:\D\C\Ib;C:\D\C\Ic;C:\D\C\Id;C:\D\C\Ie;C:\D\C\IN;C:\D\C\IT;C:\D\C\Iz;C:\D\C\K;C:\D\C\L;C:\D\C\N;C:\D\C\N1;C:\D\C\N4;C:\D\C\N6;C:\D\C\N7;C:\D\C\Nt;C:\D\C\S;C:\D\C\T;C:\D\C\U\A;C:\D\C\U\B;C:\D\C\U\E;C:\D\C\U\F;C:\D\C\U\M;C:\D\C\U\MC;C:\D\C\U\N;C:\D\C\U\N1;C:\D\C\U\P;C:\D\C\U\PR;C:\D\C\U\R\WIN2K;C:\D\C\U\R;C:\D\C\U\RE;C:\D\C\U\S;C:\D\C\U\T;C:\D\C\U;C:\D\C\Ul;C:\D\C\V;C:\D\C\V2;C:\D\C\V3;C:\D\C\VX;C:\D\C;C:\D\G\3;C:\D\G\3a;C:\D\G\3b\Help;C:\D\G\3b\TV;C:\D\G\3b;C:\D\G\A\B104863;C:\D\G\A\B105079;C:\D\G\A\B_21192;C:\D\G\A\B_32225;C:\D\G\A\B_32846;C:\D\G\A\B_76015;C:\D\G\A\B_95503;C:\D\G\A\CC\Branding;C:\D\G\A\CC\Core-Implementation;C:\D\G\A\CC\Core-PreInstall;C:\D\G\A\CC\Core-Static;C:\D\G\A\CC\Graphics-Full-Existing;C:\D\G\A\CC\Graphics-Full-New;C:\D\G\A\CC\Graphics-Light;C:\D\G\A\CC\Graphics-Previews-Common;C:\D\G\A\CC\Help\cs;C:\D\G\A\CC\Help\da;C:\D\G\A\CC\Help\de;C:\D\G\A\CC\Help\el;C:\D\G\A\CC\Help\en-us;C:\D\G\A\CC\Help\es;C:\D\G\A\CC\Help\fi;C:\D\G\A\CC\Help\fr;C:\D\G\A\CC\Help\hu;C:\D\G\A\CC\Help\it;C:\D\G\A\CC\Help\ja;C:\D\G\A\CC\Help\ko;C:\D\G\A\CC\Help\nl;C:\D\G\A\CC\Help\no;C:\D\G\A\CC\Help\pl;C:\D\G\A\CC\Help\pt-BR;C:\D\G\A\CC\Help\ru;C:\D\G\A\CC\Help\sv;C:\D\G\A\CC\Help\th;C:\D\G\A\CC\Help\tr;C:\D\G\A\CC\Help\zh-CHS;C:\D\G\A\CC\Help\zh-CHT;C:\D\G\A\CC\Help;C:\D\G\A\CC\HydraVision-Full;C:\D\G\A\CC\Localization\All;C:\D\G\A\CC\Localization;C:\D\G\A\CC\MOM-InstallProxy;C:\D\G\A\CC\Skins;C:\D\G\A\CC\Utility;C:\D\G\A\CC\Utility64;C:\D\G\A\CC;C:\D\G\A\W;C:\D\G\A;C:\D\G\A1\AVIVO;C:\D\G\A1\B107327;C:\D\G\A1\CC\Branding;C:\D\G\A1\CC\Core-Static;C:\D\G\A1\CC\Graphics-Previews-Common;C:\D\G\A1\CC\Help\cs;C:\D\G\A1\CC\Help\da;C:\D\G\A1\CC\Help\de;C:\D\G\A1\CC\Help\el;C:\D\G\A1\CC\Help\en-us;C:\D\G\A1\CC\Help\es;C:\D\G\A1\CC\Help\fi;C:\D\G\A1\CC\Help\fr;C:\D\G\A1\CC\Help\hu;C:\D\G\A1\CC\Help\it;C:\D\G\A1\CC\Help\ja;C:\D\G\A1\CC\Help\ko;C:\D\G\A1\CC\Help\nl;C:\D\G\A1\CC\Help\no;C:\D\G\A1\CC\Help\pl;C:\D\G\A1\CC\Help\pt-BR;C:\D\G\A1\CC\Help\ru;C:\D\G\A1\CC\Help\sv;C:\D\G\A1\CC\Help\th;C:\D\G\A1\CC\Help\tr;C:\D\G\A1\CC\Help\zh-CHS;C:\D\G\A1\CC\Help\zh-CHT;C:\D\G\A1\CC\Help;C:\D\G\A1\CC\Localization\All;C:\D\G\A1\CC\Localization;C:\D\G\A1\CC\MOM-InstallProxy;C:\D\G\A1\CC\Utility;C:\D\G\A1\CC\Utility64;C:\D\G\A1\CC;C:\D\G\A1\W;C:\D\G\A1;C:\D\G\A2;C:\D\G\A3;C:\D\G\A4;C:\D\G\A7;C:\D\G\A8;C:\D\G\AD;C:\D\G\As;C:\D\G\I\ARA;C:\D\G\I\CHS;C:\D\G\I\CHT;C:\D\G\I\CSY;C:\D\G\I\DAN;C:\D\G\I\DEU;C:\D\G\I\ELL;C:\D\G\I\ENU;C:\D\G\I\ESP;C:\D\G\I\FIN;C:\D\G\I\FRA;C:\D\G\I\HEB;C:\D\G\I\HUN;C:\D\G\I\ITA;C:\D\G\I\JPN;C:\D\G\I\KOR;C:\D\G\I\NLD;C:\D\G\I\NOR;C:\D\G\I\PLK;C:\D\G\I\PTB;C:\D\G\I\PTG;C:\D\G\I\RUS;C:\D\G\I\SVE;C:\D\G\I\THA;C:\D\G\I\TRK;C:\D\G\I;C:\D\G\I0\LANG\HDMI\ara;C:\D\G\I0\LANG\HDMI\chs;C:\D\G\I0\LANG\HDMI\cht;C:\D\G\I0\LANG\HDMI\csy;C:\D\G\I0\LANG\HDMI\dan;C:\D\G\I0\LANG\HDMI\deu;C:\D\G\I0\LANG\HDMI\ell;C:\D\G\I0\LANG\HDMI\ENU;C:\D\G\I0\LANG\HDMI\esp;C:\D\G\I0\LANG\HDMI\fin;C:\D\G\I0\LANG\HDMI\fra;C:\D\G\I0\LANG\HDMI\heb;C:\D\G\I0\LANG\HDMI\hun;C:\D\G\I0\LANG\HDMI\ita;C:\D\G\I0\LANG\HDMI\jpn;C:\D\G\I0\LANG\HDMI\kor;C:\D\G\I0\LANG\HDMI\nld;C:\D\G\I0\LANG\HDMI\nor;C:\D\G\I0\LANG\HDMI\plk;C:\D\G\I0\LANG\HDMI\ptb;C:\D\G\I0\LANG\HDMI\ptg;C:\D\G\I0\LANG\HDMI\rus;C:\D\G\I0\LANG\HDMI\SKY;C:\D\G\I0\LANG\HDMI\SLV;C:\D\G\I0\LANG\HDMI\sve;C:\D\G\I0\LANG\HDMI\tha;C:\D\G\I0\LANG\HDMI\trk;C:\D\G\I0\LANG\HDMI;C:\D\G\I0\LANG;C:\D\G\I0;C:\D\G\I1\lang\ar-SA;C:\D\G\I1\lang\cs-CZ;C:\D\G\I1\lang\da-DK;C:\D\G\I1\lang\de-DE;C:\D\G\I1\lang\el-GR;C:\D\G\I1\lang\en-US;C:\D\G\I1\lang\es-ES;C:\D\G\I1\lang\fi-FI;C:\D\G\I1\lang\fr-FR;C:\D\G\I1\lang\he-IL;C:\D\G\I1\lang\hu-HU;C:\D\G\I1\lang\it-IT;C:\D\G\I1\lang\ja-JP;C:\D\G\I1\lang\ko-KR;C:\D\G\I1\lang\nb-NO;C:\D\G\I1\lang\nl-NL;C:\D\G\I1\lang\pl-PL;C:\D\G\I1\lang\pt-BR;C:\D\G\I1\lang\pt-PT;C:\D\G\I1\lang\ru-RU;C:\D\G\I1\lang\sk-SK;C:\D\G\I1\lang\sl-SI;C:\D\G\I1\lang\sv-SE;C:\D\G\I1\lang\th-TH;C:\D\G\I1\lang\tr-TR;C:\D\G\I1\lang\zh-CN;C:\D\G\I1\lang\zh-TW;C:\D\G\I1\lang;C:\D\G\I1\x32;C:\D\G\I1;C:\D\G\I2\lang\HDMI\ARA;C:\D\G\I2\lang\HDMI\CHS;C:\D\G\I2\lang\HDMI\CHT;C:\D\G\I2\lang\HDMI\CSY;C:\D\G\I2\lang\HDMI\DAN;C:\D\G\I2\lang\HDMI\DEU;C:\D\G\I2\lang\HDMI\ELL;C:\D\G\I2\lang\HDMI\ENU;C:\D\G\I2\lang\HDMI\ESP;C:\D\G\I2\lang\HDMI\FIN;C:\D\G\I2\lang\HDMI\FRA;C:\D\G\I2\lang\HDMI\HEB;C:\D\G\I2\lang\HDMI\HUN;C:\D\G\I2\lang\HDMI\ITA;C:\D\G\I2\lang\HDMI\JPN;C:\D\G\I2\lang\HDMI\KOR;C:\D\G\I2\lang\HDMI\NLD;C:\D\G\I2\lang\HDMI\NOR;C:\D\G\I2\lang\HDMI\PLK;C:\D\G\I2\lang\HDMI\PTB;C:\D\G\I2\lang\HDMI\PTG;C:\D\G\I2\lang\HDMI\RUS;C:\D\G\I2\lang\HDMI\SKY;C:\D\G\I2\lang\HDMI\SLV;C:\D\G\I2\lang\HDMI\SVE;C:\D\G\I2\lang\HDMI\THA;C:\D\G\I2\lang\HDMI\TRK;C:\D\G\I2\lang\HDMI;C:\D\G\I2\lang;C:\D\G\I2;C:\D\G\I3;C:\D\G\I4;C:\D\G\I5;C:\D\G\I6;C:\D\G\I7;C:\D\G\I8;C:\D\G\I9;C:\D\G\IA\lang\HDMI\ARA;C:\D\G\IA\lang\HDMI\CHS;C:\D\G\IA\lang\HDMI\CHT;C:\D\G\IA\lang\HDMI\CSY;C:\D\G\IA\lang\HDMI\DAN;C:\D\G\IA\lang\HDMI\DEU;C:\D\G\IA\lang\HDMI\ELL;C:\D\G\IA\lang\HDMI\ENU;C:\D\G\IA\lang\HDMI\ESP;C:\D\G\IA\lang\HDMI\FIN;C:\D\G\IA\lang\HDMI\FRA;C:\D\G\IA\lang\HDMI\HEB;C:\D\G\IA\lang\HDMI\HUN;C:\D\G\IA\lang\HDMI\ITA;C:\D\G\IA\lang\HDMI\JPN;C:\D\G\IA\lang\HDMI\KOR;C:\D\G\IA\lang\HDMI\NLD;C:\D\G\IA\lang\HDMI\NOR;C:\D\G\IA\lang\HDMI\PLK;C:\D\G\IA\lang\HDMI\PTB;C:\D\G\IA\lang\HDMI\PTG;C:\D\G\IA\lang\HDMI\RUS;C:\D\G\IA\lang\HDMI\SKY;C:\D\G\IA\lang\HDMI\SLV;C:\D\G\IA\lang\HDMI\SVE;C:\D\G\IA\lang\HDMI\THA;C:\D\G\IA\lang\HDMI\TRK;C:\D\G\IA\lang\HDMI;C:\D\G\IA\lang;C:\D\G\IA;C:\D\G\M;C:\D\G\M1;C:\D\G\N;C:\D\G\N1;C:\D\G\N2;C:\D\G\N8;C:\D\G\P;C:\D\G\S3;C:\D\G\S3a;C:\D\G\S3b;C:\D\G\S3c;C:\D\G\S3d;C:\D\G\S3e;C:\D\G\S3f;C:\D\G\S3g;C:\D\G\Sa;C:\D\G\Sb;C:\D\G\Sc;C:\D\G\Sd;C:\D\G\Se;C:\D\G\sf;C:\D\G\T1;C:\D\G\T2;C:\D\G\TR;C:\D\G\V;C:\D\G\V1;C:\D\G\V2;C:\D\G\V3;C:\D\G\V4;C:\D\G\V5;C:\D\G\V6;C:\D\G\V7;C:\D\G\V8;C:\D\G\V9;C:\D\G\Va;C:\D\G\Vb;C:\D\G\X;C:\D\G\x2;C:\D\G;C:\D\L\3;C:\D\L\3A;C:\D\L\3B;C:\D\L\3C;C:\D\L\3D;C:\D\L\3E;C:\D\L\3F;C:\D\L\3G;C:\D\L\A;C:\D\L\A1;C:\D\L\A2;C:\D\L\A4;C:\D\L\A5;C:\D\L\A6;C:\D\L\AD;C:\D\L\AG;C:\D\L\AL;C:\D\L\AM;C:\D\L\AM1;C:\D\L\AM2;C:\D\L\AN;C:\D\L\AS;C:\D\L\At;C:\D\L\At1;C:\D\L\At2;C:\D\L\AX;C:\D\L\Ax1;C:\D\L\Ax2;C:\D\L\Ax3;C:\D\L\Ax4;C:\D\L\Ax5;C:\D\L\Ax6;C:\D\L\B1;C:\D\L\B2;C:\D\L\B3;C:\D\L\B4;C:\D\L\BF;C:\D\L\BF1;C:\D\L\BU;C:\D\L\BU1;C:\D\L\BU2;C:\D\L\C;C:\D\L\C1;C:\D\L\C2;C:\D\L\C3;C:\D\L\C5;C:\D\L\D;C:\D\L\D0;C:\D\L\D1;C:\D\L\D2;C:\D\L\D3;C:\D\L\D4;C:\D\L\D5;C:\D\L\D6;C:\D\L\D7;C:\D\L\D8;C:\D\L\D9;C:\D\L\DA;C:\D\L\DA1;C:\D\L\DA2;C:\D\L\G;C:\D\L\H;C:\D\L\HP\iscsiutils;C:\D\L\HP;C:\D\L\I\PE;C:\D\L\I\RIS;C:\D\L\I;C:\D\L\IC;C:\D\L\IC1;C:\D\L\J;C:\D\L\L;C:\D\L\L1;C:\D\L\L2;C:\D\L\L3;C:\D\L\L4;C:\D\L\L5;C:\D\L\L6;C:\D\L\L7;C:\D\L\M;C:\D\L\MI;C:\D\L\MO;C:\D\L\MS;C:\D\L\N;C:\D\L\N1;C:\D\L\N2;C:\D\L\N3;C:\D\L\N4;C:\D\L\N5;C:\D\L\N6;C:\D\L\N7;C:\D\L\N8;C:\D\L\N9;C:\D\L\ND;C:\D\L\NS;C:\D\L\NV;C:\D\L\NV1\P\2K;C:\D\L\NV1\P\XP;C:\D\L\NV1\P;C:\D\L\NV1;C:\D\L\NV2;C:\D\L\NV3;C:\D\L\NV4;C:\D\L\NV5;C:\D\L\NV6;C:\D\L\NV7;C:\D\L\O;C:\D\L\O1;C:\D\L\O2;C:\D\L\O3;C:\D\L\O4;C:\D\L\O5;C:\D\L\O6;C:\D\L\R;C:\D\L\R1;C:\D\L\R2;C:\D\L\R4;C:\D\L\RS;C:\D\L\S;C:\D\L\S1;C:\D\L\S2;C:\D\L\S3;C:\D\L\S4;C:\D\L\S6;C:\D\L\S7;C:\D\L\S8;C:\D\L\SB;C:\D\L\SB1;C:\D\L\Sc;C:\D\L\Sc1;C:\D\L\Sc5;C:\D\L\Sc7;C:\D\L\Sc8;C:\D\L\Sc9;C:\D\L\SL;C:\D\L\SS;C:\D\L\SS2;C:\D\L\U;C:\D\L\U1;C:\D\L\U3;C:\D\L\U4;C:\D\L\U5;C:\D\L\V;C:\D\L\V1;C:\D\L\V2;C:\D\L\X;C:\D\L\X1;C:\D\L\Z;C:\D\L;C:\D\M\3;C:\D\M\3B;C:\D\M\3C;C:\D\M\A;C:\D\M\A2;C:\D\M\A3;C:\D\M\A4;C:\D\M\A5;C:\D\M\A6;C:\D\M\A7;C:\D\M\A8;C:\D\M\AD;C:\D\M\AD2;C:\D\M\AD3;C:\D\M\AD4;C:\D\M\AD5;C:\D\M\AD6;C:\D\M\AD7;C:\D\M\AD8;C:\D\M\AD9;C:\D\M\ADA;C:\D\M\ADB;C:\D\M\ADC;C:\D\M\ADD;C:\D\M\AM;C:\D\M\AM0;C:\D\M\AM1;C:\D\M\AM2;C:\D\M\AM3;C:\D\M\AM4;C:\D\M\AM9;C:\D\M\AR;C:\D\M\AT;C:\D\M\AU;C:\D\M\AU2;C:\D\M\AU3;C:\D\M\B;C:\D\M\C;C:\D\M\C1;C:\D\M\C2;C:\D\M\C3;C:\D\M\C4;C:\D\M\D;C:\D\M\D1;C:\D\M\D3;C:\D\M\D4;C:\D\M\E;C:\D\M\H;C:\D\M\H1;C:\D\M\H10;C:\D\M\H11;C:\D\M\H12;C:\D\M\H1S;C:\D\M\H2;C:\D\M\H3;C:\D\M\H3K;C:\D\M\H3S;C:\D\M\H4;C:\D\M\H4K;C:\D\M\H4S;C:\D\M\H5;C:\D\M\H6;C:\D\M\H6S;C:\D\M\H7;C:\D\M\H7S;C:\D\M\H8;C:\D\M\H9;C:\D\M\H9S;C:\D\M\I;C:\D\M\I2;C:\D\M\I3;C:\D\M\I4;C:\D\M\I5;C:\D\M\I6;C:\D\M\I7;C:\D\M\I8;C:\D\M\IB;C:\D\M\IB3;C:\D\M\IB6;C:\D\M\IN;C:\D\M\IT\2k;C:\D\M\IT\2k3;C:\D\M\IT\XP;C:\D\M\IT;C:\D\M\IT1\2K;C:\D\M\IT1\2k3;C:\D\M\IT1;C:\D\M\J;C:\D\M\L;C:\D\M\L0;C:\D\M\L1;C:\D\M\L2;C:\D\M\L3;C:\D\M\L4;C:\D\M\L5;C:\D\M\L6;C:\D\M\L7;C:\D\M\L8;C:\D\M\L8r;C:\D\M\L9;C:\D\M\La;C:\D\M\Lb;C:\D\M\M;C:\D\M\M2;C:\D\M\M3;C:\D\M\M4;C:\D\M\M5;C:\D\M\N2;C:\D\M\N4;C:\D\M\N4I;C:\D\M\N5;C:\D\M\N6;C:\D\M\N6r;C:\D\M\N7;C:\D\M\N7r;C:\D\M\Nt;C:\D\M\P\K;C:\D\M\P\S;C:\D\M\P;C:\D\M\P1;C:\D\M\P1K;C:\D\M\P1S;C:\D\M\P2\K;C:\D\M\P2;C:\D\M\P2S;C:\D\M\P3;C:\D\M\P4;C:\D\M\P5;C:\D\M\P6;C:\D\M\P6K;C:\D\M\P6S;C:\D\M\P7;C:\D\M\P8;C:\D\M\P9;C:\D\M\PA;C:\D\M\PAS;C:\D\M\PC;C:\D\M\PD;C:\D\M\Q;C:\D\M\Q2;C:\D\M\Q3;C:\D\M\Q4;C:\D\M\S;C:\D\M\S2;C:\D\M\S2A;C:\D\M\S3;C:\D\M\S4;C:\D\M\S5;C:\D\M\S7;C:\D\M\S7A;C:\D\M\S7B;C:\D\M\S8;C:\D\M\S9;C:\D\M\SA;C:\D\M\SA2;C:\D\M\SB;C:\D\M\SB2;C:\D\M\SB3;C:\D\M\SB4;C:\D\M\SB5;C:\D\M\SC;C:\D\M\SC2;C:\D\M\SC3;C:\D\M\SC4;C:\D\M\SC5;C:\D\M\SS;C:\D\M\SS1;C:\D\M\SS2;C:\D\M\SS3;C:\D\M\T;C:\D\M\V;C:\D\M\V2;C:\D\M\V3;C:\D\M\V4;C:\D\M\VM;C:\D\M;C:\D\P\A;C:\D\P;C:\D\S\A;C:\D\S\A1;C:\D\S\AL;C:\D\S\AS;C:\D\S\AU;C:\D\S\C1;C:\D\S\C2;C:\D\S\C3;C:\D\S\C4;C:\D\S\C5;C:\D\S\C6;C:\D\S\C7;C:\D\S\C8;C:\D\S\CL;C:\D\S\CR\common\i386\thunk;C:\D\S\CR\common\i386;C:\D\S\CR\common;C:\D\S\CR\lang\i386;C:\D\S\CR\lang;C:\D\S\CR\support\i386;C:\D\S\CR\support;C:\D\S\CR\win2k_xp\data;C:\D\S\CR\win2k_xp\i386;C:\D\S\CR\win2k_xp;C:\D\S\CR;C:\D\S\CR1\common\amd64;C:\D\S\CR1\common\i386\thunk;C:\D\S\CR1\common\i386;C:\D\S\CR1\common;C:\D\S\CR1\lang\amd64;C:\D\S\CR1\lang\i386;C:\D\S\CR1\lang;C:\D\S\CR1\support\amd64;C:\D\S\CR1\support\i386;C:\D\S\CR1\support;C:\D\S\CR1\win2k_xp\amd64;C:\D\S\CR1\win2k_xp\data;C:\D\S\CR1\win2k_xp\i386;C:\D\S\CR1\win2k_xp;C:\D\S\CR1;C:\D\S\CR3\common\i386\thunk;C:\D\S\CR3\common\i386;C:\D\S\CR3\common;C:\D\S\CR3\lang\i386;C:\D\S\CR3\lang;C:\D\S\CR3\support\i386;C:\D\S\CR3\support;C:\D\S\CR3\win2k_xp\data;C:\D\S\CR3\win2k_xp\i386;C:\D\S\CR3\win2k_xp;C:\D\S\CR3;C:\D\S\CR4\AddOn;C:\D\S\CR4\Common;C:\D\S\CR4\Lang\i386;C:\D\S\CR4\Lang;C:\D\S\CR4\Win2k_xp\I386;C:\D\S\CR4\Win2k_xp;C:\D\S\CR4;C:\D\S\CRa\Common;C:\D\S\CRa\support\amd64;C:\D\S\CRa\support\i386;C:\D\S\CRa\support;C:\D\S\CRa\winxp\bin\amd64;C:\D\S\CRa\winxp\bin\i386;C:\D\S\CRa\winxp\bin;C:\D\S\CRa\winxp\Common;C:\D\S\CRa\winxp;C:\D\S\CRa;C:\D\S\CRb\AddOn;C:\D\S\CRb\Common;C:\D\S\CRb\Lang\i386;C:\D\S\CRb\Lang;C:\D\S\CRb\Win2k_xp\I386;C:\D\S\CRb\Win2k_xp\W2KXPDRV;C:\D\S\CRb\Win2k_xp;C:\D\S\CRb;C:\D\S\CT;C:\D\S\CT1;C:\D\S\CT2;C:\D\S\CT3;C:\D\S\E;C:\D\S\E1;C:\D\S\E2;C:\D\S\E3;C:\D\S\ES;C:\D\S\ES1;C:\D\S\H;C:\D\S\H1;C:\D\S\I;C:\D\S\I0;C:\D\S\I1;C:\D\S\I10;C:\D\S\I11;C:\D\S\I12;C:\D\S\I13;C:\D\S\I14;C:\D\S\I15;C:\D\S\I16;C:\D\S\I17;C:\D\S\I18;C:\D\S\I19;C:\D\S\I2;C:\D\S\I20;C:\D\S\I21;C:\D\S\I3;C:\D\S\I4;C:\D\S\I5;C:\D\S\I6;C:\D\S\I7;C:\D\S\I8;C:\D\S\I9;C:\D\S\M;C:\D\S\M0;C:\D\S\M1;C:\D\S\M2;C:\D\S\M3;C:\D\S\M4;C:\D\S\M5;C:\D\S\M6;C:\D\S\M7;C:\D\S\M8;C:\D\S\M9;C:\D\S\Ma;C:\D\S\Mb;C:\D\S\N;C:\D\S\N2;C:\D\S\R;C:\D\S\R1;C:\D\S\R2;C:\D\S\R3;C:\D\S\S;C:\D\S\S0;C:\D\S\S1;C:\D\S\S10;C:\D\S\S11;C:\D\S\S12;C:\D\S\S13;C:\D\S\S14;C:\D\S\S15;C:\D\S\S16;C:\D\S\S17;C:\D\S\S18;C:\D\S\S19;C:\D\S\S2;C:\D\S\S20;C:\D\S\S21;C:\D\S\S22;C:\D\S\S25;C:\D\S\S26;C:\D\S\S27;C:\D\S\S28;C:\D\S\S29;C:\D\S\S3;C:\D\S\S30;C:\D\S\S31;C:\D\S\S32;C:\D\S\S33;C:\D\S\S34;C:\D\S\S35;C:\D\S\S36;C:\D\S\S37;C:\D\S\S38;C:\D\S\S39;C:\D\S\S4;C:\D\S\S5;C:\D\S\S6;C:\D\S\S7;C:\D\S\S8;C:\D\S\S9;C:\D\S\Sa;C:\D\S\Sb;C:\D\S\Sc;C:\D\S\Sd;C:\D\S\Se;C:\D\S\Sf;C:\D\S\Sg;C:\D\S\Sh;C:\D\S\Si;C:\D\S\Sj;C:\D\S\Sk;C:\D\S\Sl;C:\D\S\Sm;C:\D\S\Sn;C:\D\S\So;C:\D\S\Sp;C:\D\S\Sq;C:\D\S\Sr;C:\D\S\SS;C:\D\S\SS2;C:\D\S\T;C:\D\S\T1;C:\D\S\T2;C:\D\S\TB;C:\D\S\TR;C:\D\S\V1;C:\D\S\V2;C:\D\S\V3;C:\D\S\X;C:\D\S\X0;C:\D\S\X1;C:\D\S\X11;C:\D\S\X12;C:\D\S\X13;C:\D\S\X14;C:\D\S\X15;C:\D\S\X16;C:\D\S\X17;C:\D\S\X18;C:\D\S\X19\SmAudio\SmAudio\dll;C:\D\S\X19\SmAudio\SmAudio;C:\D\S\X19\SmAudio;C:\D\S\X19;C:\D\S\X2;C:\D\S\X20;C:\D\S\X21\SmAudio\SmAudio\dll;C:\D\S\X21\SmAudio\SmAudio;C:\D\S\X21\SmAudio;C:\D\S\X21;C:\D\S\X22;C:\D\S\X23;C:\D\S\X24\SAII\SAII;C:\D\S\X24\SAII;C:\D\S\X24;C:\D\S\X25;C:\D\S\X26;C:\D\S\X3\SmAudio\SmAudio\dll;C:\D\S\X3\SmAudio\SmAudio;C:\D\S\X3\SmAudio;C:\D\S\X3;C:\D\S\X4;C:\D\S\X5;C:\D\S\X6;C:\D\S\X7;C:\D\S\X8;C:\D\S\X9;C:\D\S\Y;C:\D\S\Y1;C:\D\S;C:\D\W\3;C:\D\W\3a;C:\D\W\3b;C:\D\W\3c;C:\D\W\3e;C:\D\W\3f;C:\D\W\A;C:\D\W\A2;C:\D\W\A4;C:\D\W\AL;C:\D\W\AS;C:\D\W\At;C:\D\W\At1;C:\D\W\AtF;C:\D\W\AV;C:\D\W\B;C:\D\W\B1;C:\D\W\B2;C:\D\W\B3;C:\D\W\B4;C:\D\W\B5;C:\D\W\B6;C:\D\W\B8;C:\D\W\B9;C:\D\W\BL;C:\D\W\BL3;C:\D\W\BL4;C:\D\W\BL5;C:\D\W\BL6;C:\D\W\Br;C:\D\W\Br0;C:\D\W\Br3;C:\D\W\Br7;C:\D\W\Br8;C:\D\W\BU;C:\D\W\BU1;C:\D\W\BU2;C:\D\W\BU3;C:\D\W\BU4;C:\D\W\BU5;C:\D\W\BU7;C:\D\W\BU8;C:\D\W\C;C:\D\W\C3;C:\D\W\CL;C:\D\W\Co;C:\D\W\Cr;C:\D\W\Cr2;C:\D\W\Cr3;C:\D\W\Cr4;C:\D\W\D;C:\D\W\D1;C:\D\W\D2;C:\D\W\D3;C:\D\W\D4;C:\D\W\D5;C:\D\W\D6;C:\D\W\D7;C:\D\W\D8;C:\D\W\DA;C:\D\W\DB;C:\D\W\DF;C:\D\W\DG;C:\D\W\DL;C:\D\W\E;C:\D\W\E1;C:\D\W\E2;C:\D\W\E6;C:\D\W\E8;C:\D\W\EC;C:\D\W\EH;C:\D\W\Es;C:\D\W\G;C:\D\W\G2;C:\D\W\H;C:\D\W\I;C:\D\W\I1;C:\D\W\I2;C:\D\W\I3;C:\D\W\I4;C:\D\W\I5;C:\D\W\I6;C:\D\W\I7;C:\D\W\Ib;C:\D\W\IS;C:\D\W\L;C:\D\W\L0;C:\D\W\L1;C:\D\W\L2;C:\D\W\L3;C:\D\W\L4;C:\D\W\L5;C:\D\W\L6;C:\D\W\L7;C:\D\W\L8;C:\D\W\L9;C:\D\W\La;C:\D\W\Lb;C:\D\W\Lc;C:\D\W\Ld;C:\D\W\Le;C:\D\W\Lf;C:\D\W\Lg;C:\D\W\Lh;C:\D\W\Lm;C:\D\W\Lm1;C:\D\W\Lm2;C:\D\W\Lx;C:\D\W\M;C:\D\W\MI;C:\D\W\MT;C:\D\W\N1;C:\D\W\N2;C:\D\W\N3;C:\D\W\N4;C:\D\W\N6;C:\D\W\N8;C:\D\W\N9;C:\D\W\NA;C:\D\W\NB;C:\D\W\NC;C:\D\W\ND;C:\D\W\NH;C:\D\W\No;C:\D\W\o;C:\D\W\o2;C:\D\W\o3;C:\D\W\P;C:\D\W\Pr;C:\D\W\R;C:\D\W\R1;C:\D\W\R2;C:\D\W\R3;C:\D\W\R4;C:\D\W\R5;C:\D\W\R6;C:\D\W\R7;C:\D\W\R8;C:\D\W\R9;C:\D\W\RE;C:\D\W\RE1;C:\D\W\RE2;C:\D\W\RE3;C:\D\W\RE4;C:\D\W\RE5;C:\D\W\RE6;C:\D\W\S;C:\D\W\S0;C:\D\W\S1;C:\D\W\S2;C:\D\W\S3;C:\D\W\S4;C:\D\W\S5;C:\D\W\S6;C:\D\W\S7;C:\D\W\S8;C:\D\W\S9;C:\D\W\Sa;C:\D\W\Sc1;C:\D\W\Sc2;C:\D\W\Sc5;C:\D\W\Sc6;C:\D\W\Sc8;C:\D\W\ScB;C:\D\W\ScD;C:\D\W\Sg;C:\D\W\SI;C:\D\W\Si2;C:\D\W\Si3;C:\D\W\Siu;C:\D\W\Su;C:\D\W\Su2;C:\D\W\Su4;C:\D\W\Su5;C:\D\W\Su8;C:\D\W\SuB;C:\D\W\SuC;C:\D\W\SuE;C:\D\W\T;C:\D\W\T2;C:\D\W\T3;C:\D\W\TO;C:\D\W\TP;C:\D\W\U;C:\D\W\U2;C:\D\W\U3;C:\D\W\U4;C:\D\W\U5;C:\D\W\U6;C:\D\W\U7;C:\D\W\V;C:\D\W\V2;C:\D\W\W;C:\D\W\X;C:\D\W\X2;C:\D\W\X7;C:\D\W\Z;C:\D\W\Z1;C:\D\W\Z2;C:\D\W\Z4;C:\D\W\ZC;C:\D\W

and it contains a lot of CRAP, just look here

C:\D\S\CR\common;C:\D\S\CR\lang\i386;C:\D\S\CR\lang;C:\D\S\CR\support\i386;C:\D\S\CR\support;C:\D\S\CR\win2k_xp\data;C:\D\S\CR\win2k_xp\i386;C:\D\S\CR\win2k_xp;C:\D\S\CR;C:\D\S\CR1\common\amd64;C:\D\S\CR1\common\i386\thunk;C:\D\S\CR1\common\i386;C:\D\S\CR1\common;C:\D\S\CR1\lang\amd64;C:\D\S\CR1\lang\i386;C:\D\S\CR1\lang;C:\D\S\CR1\support\amd64;C:\D\S\CR1\support\i386;C:\D\S\CR1\support;C:\D\S\CR1\win2k_xp\amd64;C:\D\S\CR1\win2k_xp\data;C:\D\S\CR1\win2k_xp\i386;C:\D\S\CR1\win2k_xp;C:\D\S\CR1;C:\D\S\CR3\common\i386\thunk;C:\D\S\CR3\common\i386;C:\D\S\CR3\common;C:\D\S\CR3\lang\i386;C:\D\S\CR3\lang;C:\D\S\CR3\support\i386;C:\D\S\CR3\support;C:\D\S\CR3\win2k_xp\data;C:\D\S\CR3\win2k_xp\i386;C:\D\S\CR3\win2k_xp;C:\D\S\CR3;C:\D\S\CR4\AddOn;C:\D\S\CR4\Common;C:\D\S\CR4\Lang\i386;C:\D\S\CR4\Lang;C:\D\S\CR4\Win2k_xp\I386;C:\D\S\CR4\Win2k_xp;C:\D\S\CR4;C:\D\S\CRa\Common;C:\D\S\CRa\support\amd64;C:\D\S\CRa\support\i386;C:\D\S\CRa\support;C:\D\S\CRa\winxp\bin\amd64;C:\D\S\CRa\winxp\bin\i386;C:\D\S\CRa\winxp\bin;C:\D\S\CRa\winxp\Common;C:\D\S\CRa\winxp;C:\D\S\CRa;C:\D\S\CRb\AddOn;C:\D\S\CRb\Common;C:\D\S\CRb\Lang\i386;C:\D\S\CRb\Lang;C:\D\S\CRb\Win2k_xp\I386;C:\D\S\CRb\Win2k_xp\W2KXPDRV;C:\D\S\CRb\Win2k_xp

The most published folders do not belong to drivers, it's just subfolders. And that's why it often doesn't work - the result DevicePath is bigger than possible.
Some posts ago i've described how to make clear DevicePath value but you'll need to do it manually. Just do 2-3 integrations with method 1 into Windows setup( changing driverpacks due to OemPnpDriversPath length limitations ), after that combine all results, add "%SystemDrive%\" or "C:\" before every path, post the resulting string via regedit into DevicePath value after existing "%SystemRoot%\inf;"( do not remove it ) and export DevicePath to the .reg-file.

19

(109 replies, posted in Universal Imaging)

Ok, i've manually modified the DevicePath value and now it contains all main driverpacks including MassStorage 11.01.
I do not add any strings in [SysprepMassStorage] section manually and just run sysprep with [Sysprep] BuildMassStorageSection = Yes.
Finally i've got the generated [SysprepMassStorage] and among other strings with "=C:\Windows\Inf" after hwid generated section contains following strings:

pci\ven_104b&dev_1040=c:\d\m\vm\vmscsi.inf
pci\ven_1000&dev_0030=c:\d\m\la\lsi_scsi.inf
pci\ven_1000&dev_0032=c:\d\m\la\lsi_scsi.inf

That strings are from MassStorage DriverPacks.
Please, can anyone explain why that string are appearing but no other from MassStorage driverpack.

20

(109 replies, posted in Universal Imaging)

I'm not sure that I remember all well but i've seen the same thing when my registry key [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion] "DevicePath" value contains string that simply was ignored by sysprep due to the length of this value.

There are few moments you can clarify:
1. Now you run "sysprep -bmsd" before resealing step or use this code in sysprep.inf?

[Sysprep]
BuildMassStorageSection = Yes

After adding this, sysprep will build [SysprepMassStorage] section before resealing and will replace manually added strings which have hwids of already supported by drivers published with windows setup( "Windows\inf" folder ).
This is the same as when you run "sysprep -bmsd" - you'll get [SysprepMassStorage] builded up by sysprep in sysprep.inf file.

I've mentioned if you have some kind of MassStorage drivers paths in DevicePath value before runing sysprep ( but it was two or maybe three drivers from 11.01 massstorage dp ) with this section or "sysprep -bmsd" such drivers will appear in generated [SysprepMassStorage] section. And when DevicePath value is bigger than possible you'll get nothing and all process will be ignored.
There will be no masstorage controller drivers in finally getted image, even "Windows\inf" folder drivers and resealing step will continue 2-3 seconds as you wrote.

2. What was the "minor changes"?

I'll check which drivers is "supported by sysprep" from masstorage dp and DevicePath value combination and will post it here soon, maybe someone will have the ideas.

Of course you right, friend, i've integrated all driverpacks together, i'll separate third parties in stand alone mode, thank you for fast reply. Solved.
Half a year ago it works for me every time but now driverpacks contains really huge number of drivers. Thank to all of it's authors!

Finally it works and it rocks smile
All main driverpacks + PhysX + Langs + Runtimes + HID + Monitor + Ati Tray Tools successfully integrated, other placed as standalone installer and it's DP_Install_Tool.cmd runs after DpsFnshr.exe removed at second boot.

I'm sorry again bringing bad news but I tried 5 times to integrate current driverpacks into XP sp3 cd with disc mode integration and no device was detected after installation.
Couple of days ago I've simply downloaded all driverpacks for Windows 2000/XP/2003 (x86) from here and Dpsbase from here and it's disc mode fails at all.
It's strange but I see the unpacking step before Windows setup begins ( gui progress bars while unpacking driverpacks ) but after setup finishes and at first logon the first thing i see is the standart Windows message: "Device drivers installation finished. Do you want to reboot?"( never saw it before ) Finisher runs at first logon and "self-removed" after reboot - and no device driver installed.

The same machine as here and method2 integration.
The same driverpacks works with combination of sysprep and manually added DevicePath registry value.

23

(6 replies, posted in Universal Imaging)

yacker wrote:

Seems to sort out any HAL problems with sysprep

Does sysprep contains any HAL problems? Never saw it, can you explain?

Guys, i where can I download FindHWIDS?
This URL didn't work - http://drop.io/wanderingit

The drop.io service has been discontinued. Please see our blog post for details.

OK, the last thing that i can suggest is non-WHQL driver for 9800( non-signed warning coming during mini-setup without ignoring unsigned drivers mode ), i'll rename this topic adding version number to it's name.