在Wix Installer中打包.EXE,安装后执行

Pack .EXE in Wix Installer and execute after installation

我正在使用 wix 工具集为我的应用程序创建安装程序。

我需要包含一个 .EXE 文件并执行它 during/after 安装过程(.EXE 不应安装到应用程序文件夹)。 .EXE 还依赖于 .DLL 文件,该文件随 .EXE 文件一起提供。

我怎样才能做到这一点?

问候

这应该有效...

<CustomAction Id         ="echo_test"                     
              Directory  ="INSTALLLOCATION"
              ExeCommand ='NOTEPAD.EXE echo_test.txt'
              Execute    ="immediate"
              Return     ="asyncNoWait"
                    />

取自:Call command line after installation in Wix