如何制作涉及.Net Framework(3.5或更高版本)的安装程序?
我想构建一个涉及.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该解决方案取决于您使用的安装程序工具。如果您手动检查 .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.