cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sternr
Level 4

Suppress Reboot Doesnt Suppress

Hey,
I know it was asked a million times on the forum already, but I searched and found no (working) solution...

I'm using LaunchAppAndWait to launch an external installer (not mine, dont know if it is a Installshield install or not, but it's a setup.exe that start an msi so maybe it is...).
This external installer asks for reboot at the end of it.
I tried passing it the following args:
LaunchAppAndWait(installPath,"/V"/qn REBOOT=ReallySuppress"",WAIT);
But the installer simpy ignores this flag!

Am I using the wrong flag or method?
Thanks ahead

--sternr
Labels (1)
0 Kudos
(1) Reply
Dan_Galender
Level 10

You have double quotes embedded in a double quote delimited string. You might try '/v"/qn REBOOT=ReallySuppress"' instead. Otherwise you can "escape" the embedded quotes as in "/v\"/qn REBOOT=ReallySuppress\"".
0 Kudos