I am trying to run runonceex.inf called from cmdlines.txt. I place it in the same folder (%OEM%) as cmdlines.txt. One of the windows install log files (setupact.log) shows the error "exit code 0" from rundll32 setupapi.
I try to run it manually from a command prompt and it won't run unless runonceex.inf is located in %windir%\inf, even though I make the working directory to be where runonceex.inf is located.
I read a post somewhere that said if runonceex.inf is called from cmdlines.txt, that it should be located in same folder as cmdlines.txt. I think this is incorrect.
I would like to make use of %1% to access the CD during install, however, I guess %1% in this case is %windir%\inf, and I am stuck for another method to access the cd. Does anyone know of a way to make this work WITHIN THE INF.
Thank you all.
Page 1 of 1
Runoncex.inf Runs Only If In Windows\inf
#2
Posted 27 February 2005 - 06:56 PM
I see homiebrah answers my question:
http://www.msfn.org/board/index.php?showtopic=19492&hl=
http://www.msfn.org/board/index.php?showtopic=19492&hl=
Quote
I received the same error message when running the following commands straight from cmdlines.txt:
"rundll32 setupapi,InstallHinfSection XP 128 runonceex.inf"
"rundll32.exe iernonce.dll,RunOnceExProcess"
The location of runonceex.inf was in the $OEM$ folder, but it was not being read for some reason. The second command generated the error message you saw.
To fix it, I modified the path of the first command by adding a .\ in front of runonceex.inf and having both command run in a .cmd file called upon by cmdlines.txt. It ran flawlessly with no errors.
"rundll32 setupapi,InstallHinfSection XP 128 runonceex.inf"
"rundll32.exe iernonce.dll,RunOnceExProcess"
The location of runonceex.inf was in the $OEM$ folder, but it was not being read for some reason. The second command generated the error message you saw.
To fix it, I modified the path of the first command by adding a .\ in front of runonceex.inf and having both command run in a .cmd file called upon by cmdlines.txt. It ran flawlessly with no errors.
#3
Posted 28 February 2005 - 01:42 AM
the RunOnceEx file should be a .cmd file! I think cmdlines.txt only allows executable files (*.cmd,*.exe etc...)
#4
Posted 28 February 2005 - 05:58 AM
#5
Posted 28 February 2005 - 09:16 AM
You can run the .inf from cmdlines.txt (I know cause I do it) but you have to put a specific path (ie C:\APPS\WHATEVER) or have it be alongside cmdlines.txt.
Also you can run the .inf straight from the .inf file you add the following lines at the end.
HKLM,"%RunOnce%\Setup","",0,"rundll32 iernonce,RunOnceExProcess"
[strings]
RunOnce = "Software\Microsoft\Windows\CurrentVersion\RunOnce"
Also you can run the .inf straight from the .inf file you add the following lines at the end.
HKLM,"%RunOnce%\Setup","",0,"rundll32 iernonce,RunOnceExProcess"
[strings]
RunOnce = "Software\Microsoft\Windows\CurrentVersion\RunOnce"
- ← Deleting Files but not the root folder!
- Unattended Windows 2000/XP/2003
- Dos Batch File To Get User Input →
Share this topic:
Page 1 of 1



Help

Back to top








