November 21, 200817 yr Thank you, that did the trick - now if I could get the display and the URL information to stay? any ideas on those? I tried to add the autoconfirm = 1 and it still did not take the display - it ask me to confirm the settings.Thank you again for your help..
November 22, 200817 yr [...]now if I could get the display and the URL information to stay? any ideas on those? I tried to add the autoconfirm = 1 and it still did not take the display - it ask me to confirm the settings.Try additionally adding 'ConfigureAtLogon=0'... I found several MSFN members stating that this should fix the display issue, but i don't know anything about if myself, though... The "URL information not staying" issue you're describing, i do not know what is about, sorry...
November 24, 200817 yr Thank you! that worked perfectly! I am now going through the unattended install forum thread to see if I can find out anything about how to make the home page stay - Thank you kindly for your help and patience!
March 22, 200917 yr hii use first method for install my drivers , but after windows installtion , my drivers not installed!! please help memy winnt.sif --------------------------------------;SetupMgrTag[Data] AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes"[Unattended] Unattendmode=FullUnattended OemPreinstall=No TargetPath=\Windows FileSystem=* OemSkipEula=Yes Repartition=No[UserData] FullName="301" OrgName="301" ComputerName=Computer1 ProductKey=*****-*****-*****-*****-***** ProductID=*****-*****-*****-*****-*****[GuiUnattended] TimeZone=160 AdminPassword=* EncryptedAdminPassword=NO OEMSkipRegional=1 OemSkipWelcome=1 DetachedProgram=".\system32\cmd.exe" 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)))"[Display] BitsPerPel=32 Xresolution=1024 YResolution=768 Vrefresh=60[Networking] InstallDefaultComponents=No[Identification] JoinWorkgroup=WORKGROUP[TapiLocation] CountryCode=98 Dialing=Tone AreaCode=0311[RegionalSettings] LanguageGroup=13,1,11 SystemLocale=00000429 UserLocale=00000429 InputLocale=0409:00000409,0429:00000429[Shell]CustomDefaultThemeFile = "%WinDir%\Resources\Themes\Royale.theme"-------------------------------------------------my xp cd layout-----------------------------------------------├───$OEM$│.......├───Drivers│................├───000│................├───001│.......├───7za.exe│.......├───Drivers.cmd│.......├───nircmd.exe│.......├───Process.exe│.......├───SetupCopyOEMInf.exe│.......├───WatchDriverSigningPolicy.exe├───I386│.......├───winnt.sif-----------------------------------------------------my modem driver in folder '000'--------------------------------------------------------------------------------my drivers.cmd--------------------------------------------------CLS@ECHO OFFTITLE Drivers-from-CD Installationcolor 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.nclEXIT-------------------------------pls guide mesorry for my english thank you
April 16, 200917 yr I have integrated all DriverPacks now into a Windows XP SP3 CD and noticed these scripts work fine with it. However integrating 800MB of drivers takes more time so I have updated and simplified the presetup.cmd script. Winnt.sif[Data]AutomaticUpdates = NoAutopartition = 0MsDosInitiated = 0UnattendedInstall = Yes[Unattended]CrashDumpSetting = 0DUDisable = YesDriverSigningPolicy = IgnoreFileSystem = *NoWaitAfterGUIMode = 1NoWaitAfterTextMode = 1OemPreinstall = NoOemSkipEula = YesOemSkipWelcome = 0UnattendSwitch = NoUnattendMode = DefaultHideWaitForReboot = No[GuiUnattended]DetachedProgram=".\system32\cmd.exe"Arguments="/Q /C FOR /F %I IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (FOR %J IN (%I$OEM$) DO (IF EXIST %J (START /D%J nircmd.exe exec hide presetup.cmd)))"presetup.cmd@echo offset param=%*if not defined param ( start nircmd.exe exec hide presetup.cmd install process.exe -s "setup.exe" goto :ticker) else ( setupcopyoeminf.exe "Drivers")process.exe -k "sleep.exe"process.exe -r "setup.exe"exit:tickersleep 50process.exe -r "setup.exe"process.exe -v | findstr /i ^"setupcopyoeminf^"if not errorlevel 1 ( sleep -m 2500 process.exe -s "setup.exe" goto :ticker)goto :eofUPDATE: Removed ticker script, so no need for nircmd.exe anymore. Script now depends on sleep.exe to wait. I have included nircmd.exe only for hiding the script now. Edited April 21, 200917 yr by Acheron
April 22, 200917 yr As I'm working on integrating the DriverPacks I'm encountering problems using the DPFinisher program as it assumes all drivers are copied to the hdd. Also the program does run some tasks similar as setupcopyoeminf but these are not documented anywhere. Writing a custom application to manually process the DriverPacks without the bloat from the DPFinisher program should make things more simply.
May 15, 200917 yr I've recently changed to installing my apps from a second data-drive/partition, instead of the %cdrom% based method, since that's even more faster, but then i thought to myself, why not also doing the same with the drivers, i.e. having the drivers stored on a second data-drive/partition, and then letting Windows install them from there, and so i changed the method described in this thread(uncompressed drivers from CD), with the following changes:I placed the $OEM$ folder on my second data-drive/partition, and renamed it to Drivers, and then changed the 'Arguments' section in WINNT.SIF to the following:[GuiUnattended] DetachedProgram=".\system32\cmd.exe" Arguments="/Q /C start /min /Dxxxxx NirCmd.exe exec hide Drivers.cmd"(Where xxxxx is the path for the Drivers folder)Just wanted to post this, in case someone would find it interesting... Edited May 17, 200917 yr by Martin H
October 26, 200916 yr Has anyone successfully used this for XP x64 Edition install? (no driverpacks exist for xp64, so if this method applies, it can work wonders)..
January 9, 201016 yr Hello,This is quite an informative thread but is there any method by which I can keep a backup file for my drivers in the system memory itself? Edited January 9, 201016 yr by puntoMX *SPAM*
June 17, 201016 yr Hello guys i ve a little confusion. Can you guys clear?To accomplish this method Drivers from CD: Simple Method. I ve to place this entry in winnt.sif in my GuiUnattended section:DetachedProgram=".\system32\cmd.exe"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)))"And then i ve 2 copy the six files from the zip in $OEM$ folder. Then i ve to create a subfolder in $OEM$ with the name drivers. The confusion is that CAN I PLACE MY DRIVERS IN SUBFOLDERS IN DRIVERS FOLDERS like Drivers\chipset\1, Drivers\chipset\2, Drivers\chipset\2 . Second confusion is can i place my Drivers folder in the root of Unattended cd rom or not?
June 17, 201016 yr Hello guys i ve a little confusion. Can you guys clear?To accomplish this method Drivers from CD: Simple Method. I ve to place this entry in winnt.sif in my GuiUnattended section:DetachedProgram=".\system32\cmd.exe"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)))"And then i ve 2 copy the six files from the zip in $OEM$ folder. Then i ve to create a subfolder in $OEM$ with the name drivers. The confusion is that CAN I PLACE MY DRIVERS IN SUBFOLDERS IN DRIVERS FOLDERS like Drivers\chipset\1, Drivers\chipset\2, Drivers\chipset\2 . Second confusion is can i place my Drivers folder in the root of Unattended cd rom or not?
July 10, 201016 yr Yes, setupcopyoeminf.exe automaticly processes all subdirectories. I'm still working on rewriting the DriverPack Finisher program to get it to work using this method. I have also been experimenting with USB media with good results.
January 20, 201511 yr What about searching?http://www.msfn.org/board/topic/143008-how-do-you-include-drivers/Several links to tried-and-true methods.The method for Win7 is (nearly) the same as XP.http://www.msfn.org/board/topic/139572-ask-your-seven-xml-here/#entry892782For drivers needed during PE phase:http://www.msfn.org/board/topic/139572-ask-your-seven-xml-here/#entry913017I added USB3 drivers for an add-in card using the above for a MoBo that the USB2 ports failed on and had no PS2 ports. HTH
January 20, 201511 yr already check out bro but my unattended is too huge with drivers now just wonder if have any solution same like this one to use a compress driver pack into windows. but thanks anyway Edited January 20, 201511 yr by cyberloner
Create an account or sign in to comment