使引导程序先决条件不要在 64 位下安装

发布于 2024-11-04 14:42:08 字数 323 浏览 3 评论 0原文

我有一个安装项目,安装了几个先决条件,其中一些带有 Bootstrapper Manifest Generator(框架、SQLExpress、视频编解码器),但我的安装项目仅适用于 32 位。我对此进行了检查,如果 SO 是 64 位,则 msi 显示错误,但如果 SO 是 64 位,则无论如何安装先决条件..这是我必须处理的第一个问题,但没有命名第一个问题的另一个问题是如果 SO 是 64 位,那么 SQL Express 的先决条件安装会出现错误,因为 SQL Express 适用于 32 位,而我不想显示该消息。 那么..如果 SO 是 64 位,我该如何阻止安装先决条件呢?

我希望你能帮助我,谢谢!

i have a setup project that installs a couple of prerequisites, some with the Bootstrapper Manifest Generator (Framework, SQLExpress, a video codec) but my setup project it's only for 32bits. I have a check over that and the msi displays an error if the SO is 64bits, but the prerequisites install anyway if the SO is 64bits.. this is the first problem i have to deal, but the other problem without naming the first one is that if the SO is 64bits, then the prerequisite installation of the SQL Express gives an error because the SQL Express is for 32bits and i dont want to display that message.
So.. how can i make a way to prevent the prerequisites to install if the SO is 64bits?

I hope you can help me, thanks!

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

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

发布评论

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

评论(1

懒猫 2024-11-11 14:42:08

您很可能需要为您的先决条件创建一个自定义引导程序。

http://jcrawfor74. wordpress.com/2011/03/03/bootstrap-manifest-generator-2008-how-to-guide-v2/

然后,您需要指定安装条件以排除 x64。原始 XML 如下所示:

<FailIf Property="ProcessorArchitecture"
        Compare="ValueEqualTo"
        Value="IA64"
        String="InvalidPlatformArchitect" />

Most likely you will need to create a custom bootstrapper for your prerequisites.

http://jcrawfor74.wordpress.com/2011/03/03/bootstrap-manifest-generator-2008-how-to-guide-v2/

Then you will need to specify install conditions to exclude x64. The raw XML looks like this:

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