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: how to call shell command in script
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
‎Nov 15, 2009
09:00 PM
how to call shell command in script
How can I run the command like msiexec.exe /I "C:\path to msi\someMSIFile.msi"
in script.
another question is how to call custom action in script. is there a built-in method?
Thanks.
in script.
another question is how to call custom action in script. is there a built-in method?
Thanks.
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 15, 2009
11:38 PM
you can run using the enbuilt function LaunchAppAndWait().
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 16, 2009
04:12 AM
I used the LaunchApplication() method, it seems LaunchAppAndWait is more neat, thank u.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 16, 2009
08:02 AM
As for calling custom action from a script, you can use MsiDoAction(...);
Don't forget to read the help library about the actions you can/cannot call.
Don't forget to read the help library about the actions you can/cannot call.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 17, 2009
09:11 PM
Thanks to @Reureu.:)
