我想执行应用程序,我已经升级了。 http://wix.sourceforge.net/manual-wix3/run_program_after_install.htm对我不起作用,因为我没有退出对话框。
答案 0 :(得分:3)
<InstallExecuteSequence>
<Custom Action="LaunchApplication" OnExit="success">CLIENTUILEVEL = 2 AND NOT Installed</Custom>
<InstallExecuteSequence>
执行自定义操作LaunchApplication以打开应用程序。
答案 1 :(得分:1)
在WiX 3.8中,我发现这样做的唯一方法是
<CustomAction Id="LaunchFile" FileKey="..." ExeCommand="" Return="asyncNoWait" />
<InstallExecuteSequence>
<Custom Action="LaunchFile" After="InstallFinalize">NOT Installed</Custom>
</InstallExecuteSequence>
在UI中的“安装”按钮之后以及“完成”按钮之前触发。也适用于/quiet
模式。