Suppose, I have the following folders structure:
c:\Test\setup.exe (this is main installation launcher)
c:\Test\Feature1\setup.exe (Installation of feature1)
c:\Test\Feature2\setup.exe (Installation of feature2)
I created customized InstallShield Dialog in main installation launcher where user can click on appropriate button and run Installation of Feature1 or Feature2. I do it using InstallScript LaunchAppAndWait()
function. So, my question is - how can I do it using relative paths?
For example:
LaunchAppAndWait("c:\\Test\\Feature1\\setup.exe", "", LAAW_OPTION_WAIT) - it works.
LaunchAppAndWait("Feature1\\setup.exe", "", LAAW_OPTION_WAIT) - doesn't work.