如何创建静默运行且无需用户交互的 ClickOnce 安装程序?

发布于 2024-12-04 23:21:28 字数 160 浏览 1 评论 0原文

理想情况下,调用 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 技术交流群。

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

发布评论

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

评论(1

滥情稳全场 2024-12-11 23:21:28

其他文件

附加组件(文件和 DLL 文件)可以作为下载的一部分自动添加到项目“发布”> 的属性页中。 “应用程序文件...”。

先决条件

至于先决条件,这将需要用户许可(除非您对此进行编码以在应用程序启动时执行静默安装 - 不推荐且令人讨厌的解决方案)。在工作中,我让基础设施推出了 .NET 3.5/4.0 等先决条件。

静默 ClickOnce 安装

要创建静默 ClickOnce 安装程序,请在 WPF< 中设置 MaximumRequiredVersion 元素/a>/Windows 窗体 项目文件与 ApplicationVersion 版本相同。

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
...
<MinimumRequiredVersion>1.0.22.1</MinimumRequiredVersion>
<ApplicationVersion>1.0.22.1</ApplicationVersion>
...
</PropertyGroup>

如果这些版本号相同,则不会提示用户更新对话框。

在工作中,我使用 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.

<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
...
<MinimumRequiredVersion>1.0.22.1</MinimumRequiredVersion>
<ApplicationVersion>1.0.22.1</ApplicationVersion>
...
</PropertyGroup>

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.

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