使用Wix检测已安装的软件

时间:2010-02-01 02:44:20

标签: wix upgrade votive version-detection

刚开始我是wix的新手。我目前正在使用带有Votive Visual Studio插件的3.0版。

我知道现有软件包的升级代码。我需要能够使用特定的升级代码检测此现有程序的安装,并在该程序的版本(我试图检测的程序)等于或小于1.3.0.0时暂停安装。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:5)

使用您要检测的版本填充UpgradeTable并将其分配给属性:

<Upgrade Id="[the upgrade code]">
   <UpgradeVersion Minimum="0.0.0.0" Maximum="1.3.0.0" OnlyDetect="yes" Property="FOUND">
</Upgrade>

然后在启动条件中使用该属性:

<Condition Message="Version blah found">FOUND = ""</Condition>

更多详情:

http://neilsleightholm.blogspot.com/2009/01/launchconditions-findrelatedproducts.html