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
- :
- Re: Cannot suppress MSI packet reboot in installscript
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
Apr 29, 2010
02:53 PM
Cannot suppress MSI packet reboot in installscript
Hello:
This follows my question yesterday about 64bit merge module.
Now, I have created a msi package from the 3rd party 64 bit merge modules.
I was able to install it by calling LaunchApplication.
However, I cannot seem to suppress the reboot when i uninstall the MSI package in the installscript.
Here is my code:
szProgram = "Msiexec";
szCmdLine = " /uninstall \"C:\64bitMsi.msi\" /qn REBOOT=ReallySuppress";
szDir = "C";
LaunchApplication(szProgram,szCmdLine,szDir,SW_SHOW,1000000,LAAW_OPTION_WAIT);
If I try to install/uninstall the 64bitMsi.msi directly from the windows command prompt with msiexec, I got the same result. The system always automatically reboot after the uninstall.
Why couldn't suppress the reboot?
Thank you very much,
This follows my question yesterday about 64bit merge module.
Now, I have created a msi package from the 3rd party 64 bit merge modules.
I was able to install it by calling LaunchApplication.
However, I cannot seem to suppress the reboot when i uninstall the MSI package in the installscript.
Here is my code:
szProgram = "Msiexec";
szCmdLine = " /uninstall \"C:\64bitMsi.msi\" /qn REBOOT=ReallySuppress";
szDir = "C";
LaunchApplication(szProgram,szCmdLine,szDir,SW_SHOW,1000000,LAAW_OPTION_WAIT);
If I try to install/uninstall the 64bitMsi.msi directly from the windows command prompt with msiexec, I got the same result. The system always automatically reboot after the uninstall.
Why couldn't suppress the reboot?
Thank you very much,
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Apr 29, 2010
02:55 PM
Sorry, about the spelling error in the title.
I meant MSI package
I meant MSI package