WiX:如果这是c#自定义动作功能中的“已安装”状态,该怎么办?

时间:2013-03-06 15:25:31

标签: wix custom-action

我有一个自定义操作c#函数,需要知道“已安装”或“未安装”状态。 如何获得这种状态?

即。我需要知道c#custom action

中的这种状态(已安装或未安装)
<Custom Action="CA_myfun" After="PublishProduct">NOT Installed</Custom>
    </InstallExecuteSequence>

1 个答案:

答案 0 :(得分:3)

假设自定义操作已安排立即执行:

bool installed = session.EvalulateCondition("Installed");