如何使用 MSI 安排在下次重新启动时进行安装?

发布于 2024-11-14 01:37:07 字数 264 浏览 1 评论 0原文

我们有一个 MSI 安装程序(使用 Wix 创建),它被设置为能够执行升级。我们的客户使用它使用在静默模式下运行 msiexec 的 SMS 包来同时升级多台计算机上的应用程序。

这样做的问题是,他们的一些用户在安装程序运行时仍在运行我们的应用程序。我们不想把这些用户赶走,并且在他们使用应用程序时运行安装总是会破坏一些东西。

我们理想的解决方案是安排在下次机器启动时进行安装。

这是一个相当庞大的要求列表,但是有谁知道我如何实现这一目标或者下一步我可能会关注什么?

We have an MSI installer (created using Wix) which is setup to be able to perform upgrades. Our clients are using it to upgrade our application on multiple machines at once using an SMS package running msiexec in silent mode.

The problem with this is that some of their users will still be running our application at the time the installer is run. We don't want to kick these users off, and running the install while they are using the app invariably breaks things.

Our ideal solution would be for the install to be scheduled to happen the next time the machine boots up.

This is a fairly hefty list of requirements, but does anyone know how I could achieve this or where I might look next?

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

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

发布评论

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

评论(2

深巷少女 2024-11-21 01:37:07

您可以在 HKLM\software\microsoft\windows\currentversion\RunOnce 下的注册表中添加一个值,它将在用户下次登录时运行。

You could add a value to the registry under HKLM\software\microsoft\windows\currentversion\RunOnce and it will run the next time a user logs on.

吻泪 2024-11-21 01:37:07

Windows Installer 会自动检测正在使用的文件。此外,在静默安装期间,它会自动处理它们:

  • 未使用的文件将被覆盖,
  • 正在使用的文件将计划在重新启动后更新

如您所见,这有点问题,因为有些文件已更新,有些文件未更新。

一个好的解决方案是将 REBOOPROMPT 属性设置为“S”。这样目标机器在安装后会自动重新启动。

不幸的是,MSI 软件包无法检测正在运行的进程,请停止安装并安排在下次重新启动时进行。这只能通过自定义 EXE 引导程序来完成。

Windows Installer automatically detects files in use. Also, during a silent installation it handles them automatically:

  • files which are not in use are overwritten
  • files in use are scheduled for update after a reboot

As you can see, this is somewhat problematic because some files are updated and some file are not.

A good solution is to set REBOOTPROMPT property to "S". This way the target machine is automatically rebooted after install.

Unfortunately MSI packages cannot detect running processes, stop the install and schedule it at the next reboot. This could be done only with a custom EXE bootstrapper.

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