Topic: Driverspack compressed on a usb-stick win xp instalation

Hi, i try the simple method of drivers from cd (http://www.msfn.org/board/Drivers-CD-Si … 51406.html) is more information about, but the problem is i not install from a cdsource, the instalation is from a usb-stick using WinSetupFromUSB program (http://www.msfn.org/board/install-USB-W … 20444.html)

The thing is, i got the compressed drivers in 1 file called Drivers.7z, inside U:\$WIN_NT$.~LS\$OEM$\Drivers (drive letter for my usb-stick is always U:) The frist time i try the install win xp and the drivers and not work, then i try, try, try, and try, and i looking for the problem, i read the file Drivers.cmd and i see the code is for a CDSOURCE, not for and removible usb and less for a usb-stick with the letter drive is always U:

I think the problem is that, just the code the drivers.cmd and the search for a cdsource and the dir tree in the usb-stick is no match a cd instalation method.

I let you my dir tree from usb-stick

U:
---\$WIN_NT$.~BT
----------------------\system32
---\$WIN_NT$.~LS
----------------------\$OEM$
-------------------------------\Drivers\Drivers.7z
----------------------\I386

This is the code for drivers.cmd

CLS
@ECHO OFF
TITLE Drivers-from-CD Installation
color 1F
:: Set Current Drive as CD
CD /D "%~dp0"
:: Set Drivers Location Folder
SET DRV=Drivers
:: Ticker script
ECHO.exec hide %CD%\Process.exe -r setup.exe >%SystemDrive%\Ticker.ncl
ECHO.wait 10000 >>%SystemDrive%\Ticker.ncl
ECHO.exec hide %CD%\Process.exe -p SetupCopyOEMInf.exe high >>%SystemDrive%\Ticker.ncl
ECHO.exec hide %CD%\Process.exe -s setup.exe >>%SystemDrive%\Ticker.ncl
ECHO.wait 50000 >>%SystemDrive%\Ticker.ncl
ECHO.script %SystemDrive%\Ticker.ncl >>%SystemDrive%\Ticker.ncl
:: Pre-Install (Suspend Setup, and Set Setup to Low Priority)
.\Process.exe -s setup.exe
.\Process.exe -p setup.exe low
:: Allow for Unsigned Drivers
START .\WatchDriverSigningPolicy.exe
:: If Compressed Drivers Exist, Unzip Them & Change Drivers Location Folder to Hard Drive
IF EXIST Drivers.7z (
SET DRV=%SystemDrive%\Drivers
.\7za.exe x -y -aoa -o"%SystemDrive%\Drivers" ".\Drivers.7z"
)
:: Run NirCmd Ticker Script (code above)
START .\NirCmd.exe script %SystemDrive%\Ticker.ncl
:: Install Drivers
.\SetupCopyOEMInf.exe "%DRV%"
:: Post-Install (Close NirCmd, Setup Priority back to Normal, Resume Setup)
.\Process.exe -k NirCmd.exe
.\Process.exe -p setup.exe normal
.\Process.exe -r setup.exe
:: Delete Ticker File
DEL %SystemDrive%\Ticker.ncl
EXIT



I hope somebody can help me, Sorry for my english

Re: Driverspack compressed on a usb-stick win xp instalation

Look,
This forum ( Feedback and Support ) is for Feedback and support of DriverPacks...
  Not only are you not useing DriverPacks you are not useing it in a supported manner...
all that aside... we don't troubleshoot code for noobs...

HOWEVER: Since it (on the surface) seems like such a Blatant and Obvious mistake here you go...

you wrote
SET DRV=%SystemDrive%\Drivers
.\7za.exe x -y -aoa -o"%SystemDrive%\Drivers" ".\Drivers.7z"
)


the Syntax is
7z [source] [destination]
not
7z [destination] [source]


so you should have written
IF EXIST Drivers.7z (
SET DRV=%SystemDrive%\Drivers
.\7z.exe -y -aoa ".\Drivers.7z" -o"%SystemDrive%\Drivers"
)

Let us know if you get it to work wink

IDK if we can help since this is a little off topic,
but your welcome to ask...
and i know we would love to hear that you got it to work

jeff

Moved to "Other"

PS that artical is over 4 years old... and much has happened since then...

take a look in our FAQ about SAD (To be renamed SoFI)
I belive SAD created with M2 will be a better solution for you.
SAD still has a few glitches we are ironing out but you can check it out by clicking on the link on our homepage
http://driverpacks.net
it is the second news item on the page

DP BartPE Tutorial   DP_BASE Tutorial   HWID's Tool     Read BEFORE you post    UserBars!
http://driverpacks.net/userbar/admin-1.png
The DriverPacks, the DP_Base program, and Support Forum are FREE!.