I have had success with Install from Network as follows, but only with Method 2
install DriverPacks into xp in \\server\winxp using method 2, and using gui run one
expand svcpack.in_ to svcpack.inf (stops mess up with future XP hotfix integrations)
relocate \\server\winxp\oem\*.7z and *.txt to \\server\winxp\i386\$oem$\$1
relocate \\server\winxp\oem\bin to \\server\winxp\i386\$oem$\$1\bin
add gui run once section from winnt.sif to your \\server\winxp\i386\$oem$\$1\unattend.txt (or whereever you keep your unattend file) and delete winnt.sif
delete aticcc.ins (stops desktop ATI litter) and whole \\server\winxp\oem folder (should now be empty)
add the followingline to end of \\server\WinXP\i386\$oem$\$1\bin\DPsFnshr.ini to stop DriverPacks splash screen
splashscreen = "false"
replace contents of \\server\winxp\i386\presetup.cmd with the following
----------------------
REM +==========================================================================+
REM | |
REM | This presetup.cmd file was dynamically generated by the DriverPacks |
REM | BASE, to work with the DriverPacks without any further editing. |
REM | However, if you would like to add some custom functionality, you can |
REM | edit this file without any problems. Just take into record that this |
REM | file will be erased if you run the DriverPacks BASE on these Windows |
REM | installation files again! |
REM | |
REM | With special thanks to: |
REM | -Pyron, a06lp and iLE for their help with this method; |
REM | -schalti for the optional 'Keep the Drivers' system and Pyron (again) |
REM | for turning it into an executable. |
REM | -SuperTibaldoKart for creating un7zip.exe |
REM | |
REM +==========================================================================+
REM +==========================================================================+
REM | Decompressing the DriverPacks to the harddisk - using un7zip.exe. |
REM |--------------------------------------------------------------------------|
%SystemDrive%\bin\un7zip.exe %SystemDrive%\DP*.7z %SystemDrive%\
REM +==========================================================================+
REM | Copying/decompressing the files to finish the installation. |
REM |--------------------------------------------------------------------------|
%SystemDrive%\bin\un7zip.exe %SystemDrive%\bin\*.7z %SystemDrive%\
COPY /Y %SystemDrive%\bin\DPsFnshr.ini %SystemDrive%\
IF EXIST %SystemDrive%\OEM\*.ins COPY /Y %SystemDrive%\OEM\*.ins %SystemDrive%\
REM +==========================================================================+
REM | Scanning for driverdirectories. |
REM |--------------------------------------------------------------------------|
%SystemDrive%\bin\DevPath.exe %SystemDrive%\D
REM +==========================================================================+
REM | Disable Driver Signing Policy and keep it disabled. |
REM |--------------------------------------------------------------------------|
START %SystemDrive%\DSPdsblr.exe
EXIT