我有一个Windows服务,我在同一个项目中为该服务创建了一个安装程序。 现在我想部署我的服务。所以我在我的解决方案中添加了一个新项目(Wix Setup Project)。
我现在想要的是在安装后运行我的程序,即我的Windows服务,并发送一个参数以便安装服务。例如,命令行shuld是这样的: MyService.exe / I
还想发送参数 / U 来卸载我的服务。
由于
答案 0 :(得分:0)
我自己解决了这个问题。
<InstallExecuteSequence>
<Custom Action="InstallWinService" Before="InstallFinalize">NOT Installed</Custom>
<Custom Action="UninstallWinService" Before="RemoveFiles">Installed AND NOT REINSTALL</Custom>
</InstallExecuteSequence>