I hope this is what you want
this has been asked before, and I wrote this about doing drivers on CD.
Suppose you have a testrig in which you regularly change devices for you have to see wether they still work.
it runs XP which you do not want to reload.
it would be nice to have a large collection of devicedrivers ready on the drive.
Well, one can do something quite interesting.
what does one need...
1; one or two little cmd files one creates for oneself
2; a source you slipped with base, using method 2 (the source will then contains the files.)
3; 7zip.. (for the doPNF.cmd method.)
and then... how it works
copy the OEM folder from the slipstreamed source to a CDRW
create a little batchfile (or create both) and copy that to that CDRW
--------
Dopath.cmd works very simple
It extracts the files from the slipstreamed CDRW or DVDRW into a folder in windows.
devpath then tells windows the files are there, ready to be searched when hardware is added.
You have to hit "use anyway" when you run hardware wizard and it turns out the driver is not WHQL signed.
doPATH.CMD
SET TAGFILE=\OEM
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:
%CDDRIVE%\OEM\BIN\7z.exe x -y -aoa %CDDRIVE%\OEM\DP*.7z -o"%SystemRoot%\DriverPacks"
%CDDRIVE%\OEM\BIN\DevPath.exe %SystemRoot%\DriverPacks
exit
-----------
This other method takes longer to apply because makePNF installs the drivers into the windows INF section.
To make that possible, you have to extract a few files with 7zip
(makePNF.exe and DSPdsblr.exe are packed in DPsFnshr.7z)
Unpack the content to a temp folder, then copy to root of the CDR or DVDRW you'll burn.
doPNF.CMD
SET TAGFILE=\DSPdsblr.exe
FOR %%i IN (C D E F G H I J K L M N O P Q R S T U V W X Y) DO IF EXIST "%%i:%TAGFILE%" SET CDDRIVE=%%i:
%CDDRIVE%\OEM\BIN\7z.exe x -y -aoa %CDDRIVE%\OEM\DP*.7z -o"%SystemRoot%\DriverPacks"
start %CDDRIVE%\DSPdsblr.exe
%CDDRIVE%\makePNF.exe %SystemRoot%\DriverPacks
taskkill /f /im DSPdsblr.exe
%CDDRIVE%\OEM\BIN\DevPath.exe %SystemRoot%\DriverPacks
exit
-----------
note, if you simply un7zip all the driverpacks and third party packs, you need a DVD.
it would be searchable...
when they are packed, you can do above on a CD
The answer was 42?
Kind regards, Jaak.