如何将 .NET Framework 3.5 和其他先决条件添加到 InstallShield 项目
我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
对于 .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.