1

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

即我需要在 c# 自定义操作中知道这个状态(已安装或未安装)

<Custom Action="CA_myfun" After="PublishProduct">NOT Installed</Custom>
    </InstallExecuteSequence>
4

1 回答 1

3

假设自定义操作计划立即执行:

bool installed = session.EvalulateCondition("Installed");
于 2013-03-06T19:35:17.487 回答