cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
karolina
Level 3

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:)
Labels (1)
0 Kudos
(1) Reply
pv7721
Level 20

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.
0 Kudos