Itanium Posted September 5, 2005 Posted September 5, 2005 hi,I'm doing some unattended install with RunOnceEx and realized that few applications are not installing.I tried then to put an all my msi packages the /qb switch instead the silent one to see some error messages:Another installation is already in progress. Complete that installation before proceeding with this install.Is there a way to put an msi on wait before the next one starts?[start /wait -> EXCLUDED!]
Itanium Posted September 5, 2005 Author Posted September 5, 2005 start /wait msiexec /i file.msi /qb<{POST_SNAPBACK}>i don't think that start /wait msiexec /i pack.msi works from RunOnceEx?
MHz Posted September 5, 2005 Posted September 5, 2005 trymsiexec /i file.msi /qbRunOnceEx should wait for msiexec to finish.
Itanium Posted September 5, 2005 Author Posted September 5, 2005 trymsiexec /i file.msi /qbRunOnceEx should wait for msiexec to finish.<{POST_SNAPBACK}>what's the difference between msiexec /i file.msi /qb AND file.msi /qb?
Sonic Posted September 5, 2005 Posted September 5, 2005 Try : start /wait "" MyMSI.msi /switch1 /switchs2
MHz Posted September 5, 2005 Posted September 5, 2005 what's the difference between msiexec /i file.msi /qb AND file.msi /qb?<{POST_SNAPBACK}>msiexec.exe is the interpreter that executes msi files. Without specifying it, the system has to check the registry for the association to what executes msi files. Same could be shown if you wanted to open a text file. You could type Notepad file.txt. Wait will not work on file.txt aloneBeing explicit is usually best method.
Itanium Posted September 5, 2005 Author Posted September 5, 2005 more history i have slipstreamed dotnet framework sp1 and sp1fix into one sfx-rar pack. using RunOnceEx i have included this package beside other silent installations and realized that it is not installing. it doesn't mater where i put dotnetfx.exe in RunOnceEx list, it will produce the same overlapping...;The comment below contains SFX script commandsPath=%TEMP%\netfxSetup=netfx.msi /qbSilent=1Overwrite=1tried:1. used Setup=netfx.msi /qb2. used Setup=msiexec /i netfx.msi /qb3. used Setup=start /wait msiexec /i netfx.msi /qb4. used Setup=start /wait "" msiexec /i netfx.msi /qbreturned:1&2. it unpacks the archive and the it jumps to the next item in the RunOnceEx list running both in parallel. if the next item is an msi pack it gives me error above (see previous posts)3&4. error when launching: Windows cannot find 'start'. Make sure you typed the name correctly and then try again. To search for a file, click the Start button, and then click Search.start /wait used with RunOnceEx gave me same msg...any solutions?
Sonic Posted September 5, 2005 Posted September 5, 2005 Try Setup=netfx.msi /qbTempModeSilent=1Overwrite=1
Itanium Posted September 5, 2005 Author Posted September 5, 2005 Try Setup=netfx.msi /qbTempModeSilent=1Overwrite=1<{POST_SNAPBACK}>f**king sh!t, it worked!thanx a LOT sonic!!!!why?
Sonic Posted September 5, 2005 Posted September 5, 2005 WinRAR has his own method for temporary extraction ... don't try to bypass this ...Goodbye.
Itanium Posted September 5, 2005 Author Posted September 5, 2005 WinRAR has his own method for temporary extraction ... don't try to bypass this ...Goodbye.<{POST_SNAPBACK}>okey...thanks again mate!cheers
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