This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Suppress Reboot Doesnt Suppress
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 07, 2008
03:25 AM
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
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
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Aug 07, 2008
08:08 AM
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\"".
