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
- :
- How to run an executable from InstallScript installer?
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
‎Dec 01, 2009
03:26 AM
How to run an executable from InstallScript installer?
Hi,
Is there something like custom action in InstallScript, and how should I utilize it? I need to run to external executables by the installer.
Thanks in advance 🙂
Itamar
Is there something like custom action in InstallScript, and how should I utilize it? I need to run to external executables by the installer.
Thanks in advance 🙂
Itamar
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 01, 2009
05:27 AM
Yes, you can achieve this using LaunchAppAndWait() function.
Check the help files for its parameters.
Check the help files for its parameters.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 01, 2009
06:06 AM
ChandanOmkar wrote:
Yes, you can achieve this using LaunchAppAndWait() function.
Check the help files for its parameters.
Hi,
First, thanks for the quick reply 🙂
I'm building an InstallScript installer project, and I'm looking for doing it in the easy way, i.e., not by coding but by some wizard or something like this. Is it possible?
Thanks a lot,
Itamar
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 01, 2009
03:19 PM
itamarat wrote:
I'm building an InstallScript installer project, and I'm looking for doing it in the easy way, i.e., not by coding but by some wizard or something like this. Is it possible?
I haven't seen any way to do it through a wizard, but it isn't that hard. The easiest way would be to add your executables to the "Language Independent" section under "Support Files/ Billboards". Then just use this code in your Setup.rul file in the "InstallScript" window:
LaunchAppAndWait(SUPPORTDIR + "MyFilename.exe", "", WAIT);
That should keep the coding to a minimum. A better example can be found by searching for "LaunchAppAndWait Example" in the help files.
Good Luck!