使用 Wix 检测已安装的软件

发布于 2024-08-19 23:46:19 字数 169 浏览 4 评论 0原文

首先,我对 wix 还很陌生。我目前使用的是带有 Votive Visual Studio 插件的 3.0 版本。

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

任何帮助将不胜感激。

Just to start I'm fairly new to wix. I am currently using version 3.0 with the Votive Visual Studio plug in.

I know the upgrade code of an existing software package. I need to be able to detect the installation of this existing program using the particular upgrade code and halt the installation if the version of this program (the one I am trying to detect) is equal to or less than 1.3.0.0.

Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

粉红×色少女 2024-08-26 23:46:19

使用要检测的版本填充 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-findlatedproducts.html

Populate the UpgradeTable with the versions you want to detect for and assign it to a property:

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

Then use the property in the Launch Condition:

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

For more details:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文