Topic: drivers only cd

i have followed the instructions in the sticky here. i have version above 8.05. i have a dvd of an unattended setup but i need a cd for machines that dont have DVD. i copied the folder with the driverpacks winrar files from the dvd to a separate cd. when i run the dp_install_tool.cmd i get "driverpacks not found". thanks for your help

Re: drivers only cd

can i see your DPs_BASE.log please?

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!.

Re: drivers only cd

i dont have a log file

Re: drivers only cd

method 2

copy the oem folder or just the contents? sounds like the same thing. i dont know what you mean. copying the folder or the contents are the same thing. can you elaborate.

Re: drivers only cd

i just realized what you meant. i had copied just the files under /OEM to the cd. are you saying i need to copy the actual folder with the files in it.

thanks overflow

Re: drivers only cd

did you use method 2

if so did you copy the OEM folder, or just the contents, you need to have the entire OEM folder in the root of the drive ( or CD )

did you use method 1?

if so the d\ folder must be in the root of the drive (or CD)
and m1 needs the dpinst files and script in the root of the drive too

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!.

Re: drivers only cd

I tried to get rid of my double post and they both disappeared... strange

i had a copy of what i typed on the clipboard though... ( i have been gotten before wink )
so it is out of order above sorry everybody...


Yes - actual folder and the files in it

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!.

Re: drivers only cd

OverFlow wrote:

I tried to get rid of my double post and they both disappeared... strange

Forum glitch.
Happens more often than it should (read: never).
Best is to leave them both, unless you manually double-posted, the other one ususally vanishes after some time.

Hopefully the server move will cure this!

Re: drivers only cd

that did it......i needed the whole folder including the actual folder

thanks

OverFlow wrote:

I tried to get rid of my double post and they both disappeared... strange

i had a copy of what i typed on the clipboard though... ( i have been gotten before wink )
so it is out of order above sorry everybody...


Yes - actual folder and the files in it

Re: drivers only cd

ok. i am at a loss. it started decompressing and then didnt reboot or update drivers.

did i miss something. on my dvd it reboots and then, lo and behold, all hardware updated with new drivers

help. thanks

OverFlow wrote:

I tried to get rid of my double post and they both disappeared... strange

i had a copy of what i typed on the clipboard though... ( i have been gotten before wink )
so it is out of order above sorry everybody...


Yes - actual folder and the files in it

Re: drivers only cd

did it copy all the files to your drive?
Look for the \D\ folder and the finisher and dpinst files in the root folder (probably c:\)

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!.

Re: drivers only cd

yes it did. i had opened that folder off of c: to make sure it was copying. it went thru the finisher and now i dont see the files on the drive. only the finisher file in the root of C:

Re: drivers only cd

the finisher deletes the files and creates a runonce entry to delete itself after you reboot - that is normal.

dpinst should have run just before the finisher did... there whould have been a window visible while it ran for a few moments...

i added two debug lines to the cmd file to help you... please use the code below in your DP_Install_Tool.cmd for a test run

DP_Install_Tool.cmd code

@Echo off
REM Written by Jeff Herre AKA OverFlow rev08.04.21
REM A Script to use MicroSofts DPinst.exe with the DriverPacks.
REM Help and Support available at http://forum.DriverPacks.net  
Color 9f

Echo.
Echo Searching current drive for the DriverPacks...
Rem fast detect. (is it the current drive?)
FOR /f "delims=: tokens=1" %%i in ("%~dp0") do SET CDDRIVE=%%i:
IF exist %CDDRIVE%\$OEM$\$1\D goto M1Found
IF exist %CDDRIVE%\OEM\bin\un7zip.exe GoTo M2Found

Echo.
Echo Searching all drives now...
Rem alternate detection. (is it any available drive?)
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:\$OEM$\$1\D" SET CDDRIVE=%%i:& GoTo M1Found 
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:\OEM\bin\un7zip.exe" SET CDDRIVE=%%i:& GoTo M2Found

Echo.
Echo The DriverPacks were not found ???
Pause
GoTo Done


:M2Found
Echo.
Echo Extracting the DriverPacks now...
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\DP*.7z %SystemDrive%\
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\bin\*.7z %SystemDrive%\
COPY /Y %CDDRIVE%\OEM\bin\DPsFnshr.ini %SystemDrive%\
IF EXIST %CDDRIVE%\OEM\*.ins COPY /Y %CDDRIVE%\OEM\*.ins %SystemDrive%\

if not exist DPINST.exe echo DPINST.exe doesn't exist on source! & pause

COPY DPINST.exe %SystemDrive%
COPY DPInst.xml %SystemDrive%
GoTo Main


:M1Found
Echo.
Echo If you wish you may update drivers directly from the located M1 source
Echo Or you can use the DriverPacks and DP_Finisher with "Keep The Driver" option.
Echo If you choose Finisher and KTD then DriverPacks will be copied to "SystemDrive" 
Echo.
SET /p TPP=Only DriverPacks or Finisher and DriverPacks? (O or F) 
IF /I %TPP%==O "%CDDRIVE%\$OEM$\$1\DPINST.exe" /c /s & GoTo Done 
XCOPY /S %CDDRIVE%\$OEM$\$1\. %SystemDrive%


:Main
Echo.
Echo Running MicroSoft DPinst.exe now!

if not exist %SystemDrive%\DPINST.exe echo DPINST.exe doesn't exist on destination! & pause

%SystemDrive%\DPINST.exe /c /s
Echo.
Echo Running the DriverPacks.net Finisher now!
%SystemDrive%\DPsFnshr.exe



:Done
EXIT
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!.

Re: drivers only cd

yes, there was the cmd windows visible while it ran but i cant tell what was good and what was not
ok, ill try the new .cmd file below.



OverFlow wrote:

the finisher deletes the files and creates a runonce entry to delete itself after you reboot - that is normal.

dpinst should have run just before the finisher did... there whould have been a window visible while it ran for a few moments...

i added two debug lines to the cmd file to help you... please use the code below in your DP_Install_Tool.cmd for a test run

DP_Install_Tool.cmd code

@Echo off
REM Written by Jeff Herre AKA OverFlow rev08.04.21
REM A Script to use MicroSofts DPinst.exe with the DriverPacks.
REM Help and Support available at http://forum.DriverPacks.net  
Color 9f

Echo.
Echo Searching current drive for the DriverPacks...
Rem fast detect. (is it the current drive?)
FOR /f "delims=: tokens=1" %%i in ("%~dp0") do SET CDDRIVE=%%i:
IF exist %CDDRIVE%\$OEM$\$1\D goto M1Found
IF exist %CDDRIVE%\OEM\bin\un7zip.exe GoTo M2Found

Echo.
Echo Searching all drives now...
Rem alternate detection. (is it any available drive?)
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:\$OEM$\$1\D" SET CDDRIVE=%%i:& GoTo M1Found 
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:\OEM\bin\un7zip.exe" SET CDDRIVE=%%i:& GoTo M2Found

Echo.
Echo The DriverPacks were not found ???
Pause
GoTo Done


:M2Found
Echo.
Echo Extracting the DriverPacks now...
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\DP*.7z %SystemDrive%\
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\bin\*.7z %SystemDrive%\
COPY /Y %CDDRIVE%\OEM\bin\DPsFnshr.ini %SystemDrive%\
IF EXIST %CDDRIVE%\OEM\*.ins COPY /Y %CDDRIVE%\OEM\*.ins %SystemDrive%\

if not exist DPINST.exe echo DPINST.exe doesn't exist on source! & pause

COPY DPINST.exe %SystemDrive%
COPY DPInst.xml %SystemDrive%
GoTo Main


:M1Found
Echo.
Echo If you wish you may update drivers directly from the located M1 source
Echo Or you can use the DriverPacks and DP_Finisher with "Keep The Driver" option.
Echo If you choose Finisher and KTD then DriverPacks will be copied to "SystemDrive" 
Echo.
SET /p TPP=Only DriverPacks or Finisher and DriverPacks? (O or F) 
IF /I %TPP%==O "%CDDRIVE%\$OEM$\$1\DPINST.exe" /c /s & GoTo Done 
XCOPY /S %CDDRIVE%\$OEM$\$1\. %SystemDrive%


:Main
Echo.
Echo Running MicroSoft DPinst.exe now!

if not exist %SystemDrive%\DPINST.exe echo DPINST.exe doesn't exist on destination! & pause

%SystemDrive%\DPINST.exe /c /s
Echo.
Echo Running the DriverPacks.net Finisher now!
%SystemDrive%\DPsFnshr.exe



:Done
EXIT

Re: drivers only cd

done.

doesnt look like anything changed. is there a log file you need to see?


OverFlow wrote:

the finisher deletes the files and creates a runonce entry to delete itself after you reboot - that is normal.

dpinst should have run just before the finisher did... there whould have been a window visible while it ran for a few moments...

i added two debug lines to the cmd file to help you... please use the code below in your DP_Install_Tool.cmd for a test run

DP_Install_Tool.cmd code

@Echo off
REM Written by Jeff Herre AKA OverFlow rev08.04.21
REM A Script to use MicroSofts DPinst.exe with the DriverPacks.
REM Help and Support available at http://forum.DriverPacks.net  
Color 9f

Echo.
Echo Searching current drive for the DriverPacks...
Rem fast detect. (is it the current drive?)
FOR /f "delims=: tokens=1" %%i in ("%~dp0") do SET CDDRIVE=%%i:
IF exist %CDDRIVE%\$OEM$\$1\D goto M1Found
IF exist %CDDRIVE%\OEM\bin\un7zip.exe GoTo M2Found

Echo.
Echo Searching all drives now...
Rem alternate detection. (is it any available drive?)
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:\$OEM$\$1\D" SET CDDRIVE=%%i:& GoTo M1Found 
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:\OEM\bin\un7zip.exe" SET CDDRIVE=%%i:& GoTo M2Found

Echo.
Echo The DriverPacks were not found ???
Pause
GoTo Done


:M2Found
Echo.
Echo Extracting the DriverPacks now...
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\DP*.7z %SystemDrive%\
%CDDRIVE%\OEM\bin\un7zip.exe %CDDRIVE%\OEM\bin\*.7z %SystemDrive%\
COPY /Y %CDDRIVE%\OEM\bin\DPsFnshr.ini %SystemDrive%\
IF EXIST %CDDRIVE%\OEM\*.ins COPY /Y %CDDRIVE%\OEM\*.ins %SystemDrive%\

if not exist DPINST.exe echo DPINST.exe doesn't exist on source! & pause

COPY DPINST.exe %SystemDrive%
COPY DPInst.xml %SystemDrive%
GoTo Main


:M1Found
Echo.
Echo If you wish you may update drivers directly from the located M1 source
Echo Or you can use the DriverPacks and DP_Finisher with "Keep The Driver" option.
Echo If you choose Finisher and KTD then DriverPacks will be copied to "SystemDrive" 
Echo.
SET /p TPP=Only DriverPacks or Finisher and DriverPacks? (O or F) 
IF /I %TPP%==O "%CDDRIVE%\$OEM$\$1\DPINST.exe" /c /s & GoTo Done 
XCOPY /S %CDDRIVE%\$OEM$\$1\. %SystemDrive%


:Main
Echo.
Echo Running MicroSoft DPinst.exe now!

if not exist %SystemDrive%\DPINST.exe echo DPINST.exe doesn't exist on destination! & pause

%SystemDrive%\DPINST.exe /c /s
Echo.
Echo Running the DriverPacks.net Finisher now!
%SystemDrive%\DPsFnshr.exe



:Done
EXIT

Re: drivers only cd

first you should see a popup when the packs extract

then
dpinst.exe runs and it logs to the screen (in the blue window several thousand lines and takes a few minutes) .
it will list stuff like:

INFO:   RETURN: DriverPackagePreinstallW  (0xE000020B)
INFO:   Preinstalling 'e:\\d\c\i\xp\e727505.inf' ...
INFO:   ENTER:  DriverPackagePreinstallW
INFO:   Looking for Model Section [INTEL_SYS]...
INFO:   No matching devices found in INF "e:\\d\c\i\xp\e727505.inf"

if you see lines like the above scrolling by it is working !

if the dpinst file wasn't found it would have paused and put a message up like          DPINST.exe doesn't exist
since it did not pause and give an error i can only assume it worked correctly

jeff

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!.

Re: drivers only cd

PS yes there are four log files that are available to you

%SystemDrive%\DP_Install_Tool.log
%SystemRoot%\DPINST.LOG
%SystemRoot%\DPsFnshr.log
%SystemRoot%\setupapi.log

but i am not sure what you would be looking for...

do you have a device taht is not getting installed ???

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!.

Re: drivers only cd

yes, i saw all of this

looks like it is working but why doesnt it update drivers?


OverFlow wrote:

first you should see a popup when the packs extract

then
dpinst.exe runs and it logs to the screen (in the blue window several thousand lines and takes a few minutes) .
it will list stuff like:

INFO:   RETURN: DriverPackagePreinstallW  (0xE000020B)
INFO:   Preinstalling 'e:\\d\c\i\xp\e727505.inf' ...
INFO:   ENTER:  DriverPackagePreinstallW
INFO:   Looking for Model Section [INTEL_SYS]...
INFO:   No matching devices found in INF "e:\\d\c\i\xp\e727505.inf"

if you see lines like the above scrolling by it is working !

if the dpinst file wasn't found it would have paused and put a message up like          DPINST.exe doesn't exist
since it did not pause and give an error i can only assume it worked correctly

jeff

Re: drivers only cd

you had asked if a device is not getting isntalled. it seems all devices are not getting installed

i have a vanilla vga screen. when i look in device manager, i hae yellow items for things like the network card.

i did try this on a newer computer and it worked. but this is the first time i am trying it on a computer with a cd (not a dvd) so the cd is a drivers only cd.

OverFlow wrote:

PS yes there are four log files that are available to you

%SystemDrive%\DP_Install_Tool.log
%SystemRoot%\DPINST.LOG
%SystemRoot%\DPsFnshr.log
%SystemRoot%\setupapi.log

but i am not sure what you would be looking for...

do you have a device taht is not getting installed ???

Re: drivers only cd

were the all of the logs created? (meaning that the exe's all ran)

they should all be date stamped for the time of the run.

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!.

Re: drivers only cd

i only see the 2nd and 3rd on your list. i dont see the 1st and 4th unless they are in another folder.


OverFlow wrote:

were the all of the logs created? (meaning that the exe's all ran)

they should all be date stamped for the time of the run.

Re: drivers only cd

sorry. setupapi.log is there.

the only one not there is the first on on your list

OverFlow wrote:

were the all of the logs created? (meaning that the exe's all ran)

they should all be date stamped for the time of the run.

Re: drivers only cd

if there is a dpinst.log then it did run... how big is the log like 800k or so? (typical for all packs)

since you devices are not installing it might be nice to see the HWIDS perhaps they are not in the packs...

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!.

Re: drivers only cd

ok, but why wouldnt the HWIDS be in the packs. my dvd works fine and i just copied the files from my xp source folder.


OverFlow wrote:

if there is a dpinst.log then it did run... how big is the log like 800k or so? (typical for all packs)

since you devices are not installing it might be nice to see the HWIDS perhaps they are not in the packs...

Re: drivers only cd

HWID's tool is in my signature below wink

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!.