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
- :
- run another install
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Apr 22, 2010
10:50 AM
run another install
is there a way to run another install other then chained msi's?
we have a install that needs to run another install that has it's own prerequisites.
we have a install that needs to run another install that has it's own prerequisites.
(1) Reply
Jun 18, 2010
02:58 AM
Yes, you can do it by running DoInstall.
nResult = DoInstall (svExePath, svCmdLine, LAAW_OPTION_WAIT);
where
svExePath is the path to the install you want to run (setup.exe),
svCmdLine contains any parameters to pass to the installation.
nResult = DoInstall (svExePath, svCmdLine, LAAW_OPTION_WAIT);
where
svExePath is the path to the install you want to run (setup.exe),
svCmdLine contains any parameters to pass to the installation.