我正在用 DLL 中定义的自定义操作在 WiX 中编写安装程序文件。自定义操作在卸载时运行,如果失败,我希望它停止卸载过程并回滚。该操作不会影响系统,因此我可以在之前调用它InstallInitialize
,因此它不应该有其他要撤消的更改。
有人告诉我,如果我为自定义操作定义了一个属性,那么我可以使用它condition
来停止卸载过程,如下所示:
<SetProperty Id="CA_mine"
Value="No" Sequence="execute"
Before="CA_mine">
Installed AND remove=ALL
</SetProperty>
<CustomAction Id="CA_mine" BinaryKey="BIN_mine" DllEntry="mine" Execute="immediate"/>
<InstallExecuteSequence>
<Custom Action="CA_mine"
Before="InstallInitialize">
Installed AND remove=ALL
</Custom>
</InstallExecuteSequence>
<Condition>
NOT (Installed AND remove=ALL) OR [CA_mine] = "No"
</Condition>
如果我希望卸载停止,mine
则将属性设置为“是”。CA_mine
这甚至会起作用吗?何时condition
评估标签?mine
有没有更简单的方法来实现我的目标(失败时回滚卸载)?