如何在基本 MSI 项目的 installshield 中关闭修复时正在运行的应用程序实例?

发布于 2024-12-09 03:33:20 字数 39 浏览 1 评论 0 原文

我想在我的设置的修复选项中关闭正在运行的应用程序实例......

I want to close running instance of my application on repair option of my setup....

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

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

发布评论

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

评论(1

与君绝 2024-12-16 03:33:20

这可以通过自定义操作来完成。没有预定义的支持,因此您需要编写自己的自定义代码。一个好的方法是将 WM_CLOSE 发送到主应用程序窗口并让它自行关闭。

要仅在修复期间运行此自定义操作,您可以尝试使用 重新安装 属性。

如果您想避免出现“文件正在使用”对话框,则需要在 InstallValidate 操作。在这种情况下,您不能使用 REINSTALL 属性,但可以使用此条件:

Installed

当您的包在维护模式(修改、修复或删除)下运行时,它的计算结果为 true。

This can be done through a custom action. There is no predefined support for it, so you will need to write your own custom code. A good approach is sending WM_CLOSE to the main application window and let it close itself.

To run this custom action only during repair, you can try conditioning it with REINSTALL property.

If you want to avoid the Files In Use dialog, you will need to run this custom action before InstallValidate action. In this case you cannot use REINSTALL property, but you can use this condition:

Installed

It evaluates to true when your package is running in maintenance mode (modify, repair or remove).

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