来自网络的最快、最简单的安装程序?

发布于 2024-10-11 08:43:16 字数 477 浏览 0 评论 0原文

  • 我有一个要分发的可执行文件 (.exe),
  • 我希望用户尽可能简单地运行它
  • 有没有办法通过不同的技术(例如 Java)提供帮助来简化此过程?

现状

Internet Explorer

  1. 用户以常规方式下载
  2. 用户单击运行
  3. 用户单击再次运行
  4. 用户授予 UAC 权限

Firefox

  1. 用户以常规方式下载
  2. 打开保存的项目
  3. 双击安装程序
  4. 授予运行安装程序的权限
  5. 授予 UAC 权限

对于有经验的用户来说,这似乎不是一个漫长的过程,但对于没有经验的用户来说,这可能感觉像是一个永恒的过程。

有没有更快、更简单的方法来实现这一目标?

  • I have a file that is an executable (.exe) that I want to distribute
  • I want users to run it as simply as humanly possible
  • Is there a way to simplify this process, with different technologies (eg, Java) assisting along the way?

Current Situation

Internet Explorer

  1. User downloads in the regular way
  2. User clicks run
  3. User clicks run again
  4. User gives UAC permission

Firefox

  1. User downloads in the regular way
  2. Opens saved items
  3. Double clicks the installer
  4. Gives permission to run the installer
  5. Grants UAC permission

It may not seem like long process to an experienced user, but to an inexperienced one this can feel like an eternity.

Is there a faster, easier way to pull this off?

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

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

发布评论

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

评论(2

亣腦蒛氧 2024-10-18 08:43:16

尝试简化该过程听起来像是剥夺用户的控制权和安全性。我能想象的唯一更简单的事情是使用 Java 小程序或 Web 应用程序而不是可执行文件。

Trying to simplify that process sounds like taking control and security away from user. Only simpler thing I can imagine is to use Java applet or web application instead of executable file.

孤蝉 2024-10-18 08:43:16

如果您将文件安装到某个每个用户的位置(例如 %userprofile%\ 下),并且安装程序除了部署可执行文件和/或可能在当前用户区域中创建不需要提升权限的快捷方式之外,什么也不做。此外,使用有效证书签署应用程序(或安装程序)可以让您避免 UAC 交互。

我真的怀疑你可能会大大简化这个过程,因为它可能是系统的一个线程。

If you install file to some per-user location like under %userprofile%\ and installer does nothing except deploying executable and/or probably create shortcut in current user's area that should not require elevated privileges. Also signing application (or installer) with a valid certificate may allow you to avoid UAC interaction.

I really doubt you may greatly simplify the process because it may be a thread to a system.

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