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
- :
- Subinstaller Path
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
May 26, 2008
07:44 AM
Subinstaller Path
I need to combine two installers togheter:
1) the main one lets the user define User Install Dir;
2) the associated installer is executed in Post-Install Panel in the silent mode and NEED to follow the User Input from the main installer (User Install Dir),
How to do this? I would be obliged for any help:)
1) the main one lets the user define User Install Dir;
2) the associated installer is executed in Post-Install Panel in the silent mode and NEED to follow the User Input from the main installer (User Install Dir),
How to do this? I would be obliged for any help:)
(1) Reply
May 26, 2008
09:55 AM
In your MAIN installer you would need to install the setup for the second installer, and somewhere in it (say in post install) you create the installer.properties file in the same temporary folder where you installed the second installer, file which should be like this:
#Enforces silent mode
INSTALLER_UI=silent
#The installation path is the same
USER_INSTALL_DIR=$USER_INSTALL_DIR$
And then all you need to do is to launch the second installer in silent mode.
#Enforces silent mode
INSTALLER_UI=silent
#The installation path is the same
USER_INSTALL_DIR=$USER_INSTALL_DIR$
And then all you need to do is to launch the second installer in silent mode.