gpt4 book ai didi

.net - 操作系统版本先决条件

转载 作者:行者123 更新时间:2023-12-05 00:35:20 25 4
gpt4 key购买 nike

我有一个至少需要 Windows XP SP3 的应用程序。我如何才能在应用程序本身或 MSI 中检查它并自动安装?

最佳答案

在 MSI 中,您编写了一个 LaunchCondition使用 Operating System Properties

您想检查 VersionNT > 501 或( VersionNT = 501 和 ServicePackLevel > 2 )

(调整以满足您的确切需求)

在 Windows Installer XML 中,它看起来像:

<Product...>
<Condition Message="[ProductName] Setup requires Windows XP SP3 or greater to install">VersionNT > 501 or ( VersionNT = 501 and ServicePackLevel > 2 ) or Installed</Condition>
...
</Product>

关于.net - 操作系统版本先决条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3826029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com