tom9191 Posted February 16, 2006 Posted February 16, 2006 Hi.im new to this forum and this is my first post..so..here comes my doubt..its like disi donwloaded da driver pack and i extracted dem but it appears as d/c/1/... etc..is it suppose to be like dis?? am i suppose to do anything more??thnx ahead..
Guest Posted February 17, 2006 Posted February 17, 2006 @tom9191:You need DriverPacks_BASE to make any of the other DriverPacks work.
tom9191 Posted February 17, 2006 Posted February 17, 2006 Hi..its like dis..i already have da drivers pack of Bâshrat the Sneaky's DriverPacks and i extracte4d dem and wat appears is da image inn da attachment..xD
Guest Posted February 17, 2006 Posted February 17, 2006 You shouldn't extract anything; DriverPacks_BASE.exe does all the work for you. Just run BASE and follow the instructions.
tain Posted February 27, 2006 Posted February 27, 2006 Outstanding work! This method is fast, easy, and effective. It works great with HFSLIP.Thanks!
a06lp Posted February 28, 2006 Author Posted February 28, 2006 Outstanding work! This method is fast, easy, and effective. It works great with HFSLIP.Thanks!Glad to hear!
Unlock Posted February 28, 2006 Posted February 28, 2006 (edited) I've problem.....My pc reboot always after the copy of the files of windowsOK RESOLVED Edited March 1, 2006 by Unlock
a06lp Posted March 1, 2006 Author Posted March 1, 2006 I've problem.....My pc reboot always after the copy of the files of windowsOK RESOLVED ...ok
Unlock Posted March 1, 2006 Posted March 1, 2006 new problem:1)Start installation windows2)start driver.cmd and I see all operation after, pc restart and blue screenWHY?I've many drivers for more pc in drivers directory...Is the problem it?
tain Posted March 5, 2006 Posted March 5, 2006 This would be cool as an addon pack. Has anyone tried to build one yet?
MAVERICKS CHOICE Posted March 12, 2006 Posted March 12, 2006 I've problem.....My pc reboot always after the copy of the files of windowsOK RESOLVED ...okExactly when are you getting this problem shortly after T39?CheersMC.
Joc Posted March 17, 2006 Posted March 17, 2006 new problem:1)Start installation windows2)start driver.cmd and I see all operation after, pc restart and blue screenWHY?I've many drivers for more pc in drivers directory...Is the problem it?I have same problem. I deleted the Forceware driver and everything working correctly. I think the problem appears with 8x.xx drivers only. In this weekend I will test.Any opinion?Joc
Joc Posted March 19, 2006 Posted March 19, 2006 Solved the BSoD 0x7e: everything is working correctly with Forceware 77.72!Joc
Unlock Posted March 22, 2006 Posted March 22, 2006 ok canghe forceware 8 wiht 77.72.......where found it?
Djé Posted March 27, 2006 Posted March 27, 2006 (edited) Now that everything is back to batch syntax, may I submit for testing a small modification to this method?Using it as specified in the 1st post, there may be a weak point in the way Drivers.cmd is looked for, namely the Arguments line in Winnt.sif:Arguments="/Q /C FOR /F %I IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (FOR %J IN (%I$OEM$) DO (IF EXIST %J (start /min /D%J Drivers.cmd)))"* All the lines of $WINNT$.INF are processed regardless of their relevance/risk.* %I$OEM$ works fine for installing from CDROM but for installing using a local source (from dos, network, etc.) we need to use %I\$OEM$I would suggest the following 3 steps:1- put Drivers.cmd in \$OEM$\$1 instead of \$OEM$Doing so, it will be copied to %SystemDrive% at the end of the Textmode Setup2- Have a really simple Arguments line:Winnt.sifDetachedProgram = cmd.exeArguments = "/Q /C START /MIN %SYSTEMDRIVE%\Drivers.cmd"3- Modify Drivers.cmd to find the exact source folder at the beginning and to remove itself at the end:Drivers.cmdCLS@ECHO OFFTITLE Drivers-from-CD Installationcolor 1F:: Set Current Drive as CDCD /D "%~dp0":: Find the source (dospath) folderFOR /F "tokens=1* delims==" %%I IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (IF dospath==%%I SET dosP=%%J)::Add trailing slash for installs from local sourceIF NOT %dosP:~-1%==\ SET dosP=%dosP%\:: check for drivers existenceIF NOT EXIST "%dosP%$OEM$\SetupCopyOEMInf.exe" EXIT:: Set $OEM$ as CDCD /D "%dosP%$OEM$":: Set Drivers Location FolderSET DRV=Drivers......... Bulk of Drivers.cmd goes here......:: Delete Ticker FileDEL %SystemDrive%\Ticker.ncl:: Clean myself 'cause I'm a nice little boyDEL %SystemDrive%\Drivers.cmdEXIT* The FOR can now use quotes so it can properly target the folder referenced by the dospath line, at the exclusion of any other potential folder referenced by the other lines of $WINNT$.INF. Although the risk of having another $OEM$ elsewhere is low, this may avoid unexpected things to happen,* The next line allow for use in any situation: install from CDROM and install using a local source,* Then a control is performed,* Eventually the current directory is set to $OEM$ and the rest of the operations can follow.[edit]: added the 'START' command in the arguments directive, otherwise .cmd files are not processed. Edited May 2, 2006 by Djé
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now