SOLVED: drivers from CD possible even without winnt.sif!
#451
Posted 01 January 2008 - 09:27 PM
#452
Posted 19 February 2008 - 09:33 PM
Cheers for any help.
#453
Posted 27 May 2008 - 07:57 AM
Too bad.
#454
Posted 27 May 2008 - 05:34 PM
Da Killah, on May 27 2008, 11:57 PM, said:
Too bad.
I've found the solution ... if you use the DriverPacks Base to slipstream your drivers, one of the methods you can use creates a modded EXE.
I've uploaded one people can use as a replacement for this method here:
http://soporific.dsl...files/SETUP.rar
but ideally, scrap this method and use the Driverpacks method in its entirety.
Hope this helps. Sop.
#455
Posted 07 August 2008 - 07:28 AM
set tagfile=\WIN51 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 z) do if exist "%%i:%tagfile%" set CDDRIVE=%%i:
Indeed, if there's a Hard Disk with a WIN51 file at root, then identification is corrupted. One good thing should be that fake setup.exe passes drive letter as argument. This one can detect drive letter from which its launched, easily with windows API.
Does anybody have the source of fake setup.exe? I could mod it to suit my own needs.
Cheers,
Kal
#456
Posted 29 August 2008 - 03:53 AM
Da Killah, on May 27 2008, 03:57 PM, said:
Too bad.
I just extract the SETUP.EX_ from Windows XP SP2 to SETUPORG.EXE, which works flawless together with the modified SETUP.EX_ from this page.
#457
Posted 29 August 2008 - 03:53 AM
This post has been edited by booster: 29 August 2008 - 03:53 AM
#458
Posted 26 October 2008 - 11:07 AM
This post has been edited by Joc: 26 October 2008 - 11:27 AM
#459
Posted 27 October 2008 - 05:58 AM
booster, on Aug 29 2008, 11:53 AM, said:
Da Killah, on May 27 2008, 03:57 PM, said:
Too bad.
I just extract the SETUP.EX_ from Windows XP SP2 to SETUPORG.EXE, which works flawless together with the modified SETUP.EX_ from this page.
Ah thanks for the tip. I'll try it out...
#460
Posted 08 November 2009 - 11:30 AM
soporific, on May 27 2008, 08:34 PM, said:
Da Killah, on May 27 2008, 11:57 PM, said:
Too bad.
I've found the solution ... if you use the DriverPacks Base to slipstream your drivers, one of the methods you can use creates a modded EXE.
I've uploaded one people can use as a replacement for this method here:
http://soporific.dsl...files/SETUP.rar
but ideally, scrap this method and use the Driverpacks method in its entirety.
Hope this helps. Sop.
Which method is?
And please reupload the file thx!
#461
Posted 13 January 2010 - 03:32 PM
I am new at trying to make an unattended installation. I managed to make a dvd that contains all of the service packs, updates, and is basically "drop the dvd in the computer and turn it on" style of installation. Here is my problem... I am trying to make this dvd to automatically install all of the drivers required for a group of 13 different models of Dell computers. I have all of the drivers downloaded and extracted into the directory structure listed in the Unattended Guide under Intermediate, Drivers via CD and have followed the instructions listed there to get the drivers to install; however, none of the drivers install on my test computer. I have tried to even keep all of the files for the drivers (takes 2 GB for the drivers but I don't care... using a dvd anyways) but no go. My source is on my hard drive pulled from a Dell installation CD. I have followed the instructions listed on the document, but I get no drivers installed. I have also followed the instructions listed on the original post by Pyron, but still no joy. I am slightly confused as to how to make this work. I know that the source has SP3 already on the install, so I am wondering if this may be causing the problem as the original guide was written for SP2. I have read the later posts, but I am having trouble following the numerous changes made. Any information on this subject would not only be appreciated, but welcome as well. Basically, the end result would be to just drop this dvd into a Dell computer (one of the specific models that I have drivers for) and have Windows install with all of the necessary drivers (chipset, video, audio, lan, wireless). I wouldn't think this would become such a problem, but I don't seem to be able to make this happen. Please help!
This post has been edited by dwduckie: 13 January 2010 - 03:42 PM
#463
Posted 13 January 2010 - 10:59 PM
#464
Posted 02 August 2010 - 08:29 PM
I've noticed the progies required for this setup only work on 32 bit setup cds; I'm wondering if anybody has the original WatchDriverSigningPolicy.cpp file as Pyron posted so long ago: http://www.msfn.org/...post__p__117055
I plan to re-compile the apps with a 64bit compiler so all goes well on 64bit setups.
Also, just to confirm what SetDevicePath.exe <whatever folder> does; it sets the reg entry
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion
DevicePath
to <whatever folder>
Then after installation is complete a runonce is added and sets DevicePath to "%SystemRoot%\inf"
Lastly, I've noticed only recently a few VBS files in the windows\system32 folder before windows does any setup, I plan to play around with this option as an alternative to using CMD or EXE files; could easily whip out a VBS instead of a WatchDriverSigningPolicy app.
#465
Posted 04 August 2010 - 01:14 PM
mMiniImManN, on 02 August 2010 - 08:29 PM, said:
Sorry, no idea.
Amel version is available still http://www.msfn.org/...post__p__272941
Quote
http://www.msfn.org/...post__p__906043
Driversigning.c does compile at mingw64 http://www.msfn.org/...post__p__906507
#466
Posted 04 August 2010 - 08:05 PM
nice to see his restores the DevicePath, i was thinking of adding that at another place (computer froze up while i was at work or last night sometime, lost my thoughts since then).
looks like the only thing missing is to have WatchDriverSigningPolicy take the path parameter that SetDevice would do and go from there..
looks like i'm set, i got the mingw64 compiler rollin and gonna play around with more options now, thanks.
#467
Posted 05 August 2010 - 12:46 AM
I dunno what the default values are before Setup.exe loads, so i have it set them to defaults if it creates them (if BehaviorOnFail=1 and Driver Policy = 1 aka hex:01,00,00,00 )
and for those who didnt read how to compile this:
gcc -mwindows -Os -s WatchDriverSigningPolicy.cpp -o WatchDriverSigningPolicy.exe
WatchDriverSigningPolicy.exe <path to drivers>
i just thought of adding a snipit, if no param (path) is given, skip the setting of the DevicePath.. i'll do that tomorrow
.. yay for reviving old projects =D
WatchDriverSigningPolicy.txt (4.2K)
Number of downloads: 23
WatchDriverSigningPolicy_x86_32.exe (8K)
Number of downloads: 14
WatchDriverSigningPolicy_x86_64.exe (14.5K)
Number of downloads: 9
#468
Posted 16 August 2010 - 05:10 AM
001_chipset
002_net
003_display
you get the idea !!
SpideRaY



Help


Back to top










