MSI - 如何知道特定 MSI 何时正在运行

发布于 2024-12-06 01:51:14 字数 114 浏览 0 评论 0原文

有没有一种简单的方法可以知道 msi 何时运行? (在静默或非静默模式下。)也许使用 MSI API?从某处读取?...

我需要这个以避免启动用 C++ 编码的程序。

感谢您的帮助。

Is there a simply way to know when an msi is running? (either in silent or no silent mode.) Maybe using and MSI API? Reading from somewhere?...

I need this in order to avoid launching a program coded in C++.

Thanks for your help.

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

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

发布评论

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

评论(1

一梦等七年七年为一梦 2024-12-13 01:51:14

没有任何 API 用于检测正在运行的安装程序。此外,MSI 安装有两个顺序:

InstallUISequence 使用在当前用户帐户。
InstallExecuteSequence 使用 Windows Installer 服务的子进程。

因此,没有一种简单的方法可以检测正在运行的安装。我能想到的唯一解决方案是枚举所有打开的窗口并尝试按名称查找安装对话框。

There isn't any API for detecting running installers. Also, an MSI installation has two sequences:

InstallUISequence uses a process which runs under the current user account.
InstallExecuteSequence uses a process which is a child of the Windows Installer service.

So there's not an easy way for detecting a running installation. The only solution I can think of is enumerating all open windows and trying to find an installation dialog by name.

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