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
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: Invoking an exe from another
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
‎Jan 19, 2010
12:11 PM
Invoking an exe from another
Hi
I have a requirement in which I have to give an option to user from the master installer,whether he wants to install a child installer or not.If Yes then we should install the child installer.It is like invoking an exe from another exe based on some check box or something.
Does anyone has any thoughts on how to implement this?
Thanks
-Vikz
I have a requirement in which I have to give an option to user from the master installer,whether he wants to install a child installer or not.If Yes then we should install the child installer.It is like invoking an exe from another exe based on some check box or something.
Does anyone has any thoughts on how to implement this?
Thanks
-Vikz
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 19, 2010
01:20 PM
The simplest thing to do would be to install the 2nd installer in a temporary location and execute it in silent mode when required (i.e. when the end user has checked the appropriate checkbox).
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 14, 2010
11:28 PM
pv7721 wrote:
The simplest thing to do would be to install the 2nd installer in a temporary location and execute it in silent mode when required (i.e. when the end user has checked the appropriate checkbox).
Hi Vlad. Thanks a bunch for the tip. I was able to invoke an exe from another exe in windows platform."Execute Command" panel did it for me.
Now I have to do the same thing for HPUX and Solaris platform. I am working on it.
I am unaware of executing the installer from silent mode.Is there any panel which gives us this option?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 15, 2010
05:53 AM
No, there isn't any special option. All you need to do is to create an installer.properties file along the installed .exe and then use Execute Installed Target like this:
or
name of the installed setup -i silent
or
name of the installed setup -f path to the installer.properties
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Mar 02, 2010
03:29 AM
pv7721 wrote:
No, there isn't any special option. All you need to do is to create an installer.properties file along the installed .exe and then use Execute Installed Target like this:name of the installed setup -i silent
orname of the installed setup -f path to the installer.properties
Let me try this option.