假设,我有以下文件夹结构:
c:\Test\setup.exe(这是主要的安装启动器)
c:\Test\Feature1\setup.exe(安装feature1)
c:\Test\Feature2\setup.exe(安装feature2)
我在主安装启动器中创建了自定义的 InstallShield 对话框,用户可以在其中单击相应的按钮并运行 Feature1 或 Feature2 的安装。我使用 InstallScriptLaunchAppAndWait()
函数来做到这一点。所以,我的问题是 - 我如何使用相对路径来做到这一点?
例如:
LaunchAppAndWait("c:\\Test\\Feature1\\setup.exe", "", LAAW_OPTION_WAIT) - it works.
LaunchAppAndWait("Feature1\\setup.exe", "", LAAW_OPTION_WAIT) - doesn't work.