项目团队已将main.exe文件用于管理其Windows服务。 .bat中的调用参数如下:
main.exe (un)install
我是WiX Toolset的新手,我设法使用IsWiX扩展将必要的文件添加到feature.wxs中。现在我想改变这样的序列:
main.exe uninstall
并确定其成功。main.exe install
并确定其成功。如果可能的话,我还想在调用MSI卸载时添加命令main.exe uninstall
。
我真的不希望WiX本身管理服务(联合国)安装。我该怎么做才能改变XML中的顺序?顺便说一句,我没有任何C#技能,但我知道我的团队中的人可以。
仅供参考,WiX项目的结构如下:
ProjectSolution
|
```+ MainProject
|
```SetupMergeModule
| |
| SetupMergeModule.wxs
| SetupMergeModuleCustom.wxs
```[Others]
|
```MSISetup
|
```Code
| |
| Feature.wxs
| Product.wxs
``` [Others]
我正在使用最新的稳定版本3.8。