如何制作涉及.Net Framework(3.5或更高版本)的安装程序?

发布于 2024-10-11 19:25:18 字数 80 浏览 5 评论 0原文

我想构建一个涉及.NET框架(3.5或更高版本)的包(安装程序)。使用此安装程序,安装 .NET Framework 对用户来说是透明的。请帮我!

I want to build a package (installer) which involve .NET framework (3.5 or later). With this installer, installing .NET framework is transparent with user. Please help me!

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

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

发布评论

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

评论(1

最后的乘客 2024-10-18 19:25:18

该解决方案取决于您使用的安装程序工具。如果您手动检查 .NET 3.5 是否已安装 (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\Install == 1) 并启动 dotNetFx35setup.exe(如果需要),只需使用参数“< strong>/q”(或“/quiet”)应防止其在安装过程中显示用户界面。您可以找到很多如何使用 Inno Setup 执行此操作的示例。

The solution will depend on the installer tool you are using. If you are manually checking if .NET 3.5 is already installed (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\Install == 1) and launch the dotNetFx35setup.exe if needed, simply using the the parameter "/q" (or "/quiet") should prevent it from displaying a user interface during the installation. You can find lots of examples how to do this with Inno Setup.

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