如何将 .NET Framework 3.5 和其他先决条件添加到 InstallShield 项目

发布于 2024-09-03 03:56:55 字数 182 浏览 11 评论 0原文

我可以在 InstallShield 2009 中创建安装文件,

但我不知道如何将 .NET Framework 3.5 和其他先决条件添加到 InstallShield 项目中。


我在 installshield2009 中创建了 installscript 项目,但它还没有
“可再发行视图。”

I can create setup file in InstallShield 2009

I don't know how to add the .NET Framework 3.5 and other prerequisites to the InstallShield project.


i creae installscript project in instalshield2009 it has not
"Redistributables view."

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

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

发布评论

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

评论(2

香草可樂 2024-09-10 03:56:55

InstallShield 提供先决条件功能。您可以在 MSI 项目中使用它。这将确保仅在目标计算机中尚不存在这些先决条件时才安装它们。

如果您不想将这些组件(例如 .NET Framework 3.5)包含到安装程序中,则可以使用可再发行安装程序。
.net 3.5 可再发行安装程序大约为 3MB,当它包含在 InstallShiled 项目的先决条件中时,安装程​​序将检查目标计算机上是否已安装 .net 3.5 框架,如果没有,它将提示用户并下载整个文件.net 3.5框架并安装它。

如果您有非常具体的 Install Shield 查询,您可以查看

InstallShield provides the prerequisites functionality. You can use this in your MSI project. This would ensure that these prerequisites are only installed if they are not already present in the target machine.

If you do not want to include these components like .NET Framework 3.5 into your installer then you can use the redistributable setup installer.
.net 3.5 redistributable setup installer is about 3MB and when this is included into the prerequisites of your InstallShiled project then the installer will check if .net 3.5 framework is already installed on the target machine and if not it will prompt the user and download the entire .net 3.5 framework and install it.

you can check this out for if you have very specific Install Shield queries.

梦幻的心爱 2024-09-10 03:56:55

对于 .NET Framework 3.5 可再发行组件,您需要添加相应的 Microsoft .NET Framework 先决条件。这是通过可再发行视图完成的。

对于InstallShield 2009,请按照此处的说明进行操作。

For .NET Framework 3.5 redistributables, you need to add the appropriate Microsoft .NET Framework prerequisite. That's done through the Redistributables view.

For InstallShield 2009, follow the instructions here.

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