如何创建静默运行且无需用户交互的 ClickOnce 安装程序?
理想情况下,调用 setup.exe 时根本不会弹出任何窗口,但如果用户不必在安装先决条件和其他选项时单击“确定”,那就太好了。 ClickOnce 是否可以做到这一点?
Ideally no window would pop up at all when setup.exe is invoked, but it would be nice to save the user from having to click "OK" on installing pre-requisites and other options. Is that even possible with ClickOnce?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其他文件
附加组件(文件和 DLL 文件)可以作为下载的一部分自动添加到项目“发布”> 的属性页中。 “应用程序文件...”。
先决条件
至于先决条件,这将需要用户许可(除非您对此进行编码以在应用程序启动时执行静默安装 - 不推荐且令人讨厌的解决方案)。在工作中,我让基础设施推出了 .NET 3.5/4.0 等先决条件。
静默 ClickOnce 安装
要创建静默 ClickOnce 安装程序,请在 WPF< 中设置 MaximumRequiredVersion 元素/a>/Windows 窗体 项目文件与 ApplicationVersion 版本相同。
如果这些版本号相同,则不会提示用户更新对话框。
在工作中,我使用 TFS 中的自定义内部版本号自动执行此操作,以设置版本 MaximumRequiredVersion 和 ApplicationVersion在项目文件中。
Additional Files
Additional components (files and DLL files) can be added automatically as part of the download in the property pages of your project 'Publish' > 'Application Files...'.
Prerequisties
As for prerequisties, this will require the users permission (unless you code this to perform a silent install when your application starts - not recommended and nasty solution). At work I got Infrastructure to roll out prerequisites such as .NET 3.5/4.0.
Silent ClickOnce install
To create a silent ClickOnce installer, set the MinimumRequiredVersion element in your WPF/Windows Forms project file to same version as ApplicationVersion.
If these version numbers are the same, the user will not be prompted with a dialog to update.
At work, I have automated this using a custom build number from TFS to set the version MinimumRequiredVersion and ApplicationVersion in the project file.