查找预装应用程序的 MSI 安装包?

发布于 2024-10-15 15:15:49 字数 328 浏览 0 评论 0 原文

这就是我想要做的事情:

我想在远程计算机上执行应用程序安装;作为该过程的一部分,在安装新版本之前,我想检查该计算机的注册表中是否有同一应用程序的预先存在的版本

如果该计算机已安装该应用程序的现有实例,我想找到用于安装它的 MSI,以便我可以备份 MSI 并在必要时执行“回滚”。据我了解,Windows 创建这些 MSI 的副本,并将它们放置在某个临时文件夹中,并在某处使用随机名称,以便可以使用它进行卸载。

我怎样才能找到这个位置? (此外,有关如何跨网络检查注册表值的建议将不胜感激。)

Here's what I'm looking to do:

I'd like to perform an application install on a remote machine; as a part of that process, before I install the new version, I want to check that machine's registry for a pre-existing version of the same application.

If that machine has an existing instance of the application already installed, I want to find the MSI used to install it, so I can backup the MSI and perform a 'rollback' if necessary. From what I understand, Windows creates a copy of these MSIs and places them in some temp folder with a random name somewhere so that it can use it for uninstalls.

How might I find this location?
(Also, suggestions on how to check the registry values cross-network would be appreciated.)

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

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

发布评论

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

评论(1

谈下烟灰 2024-10-22 15:15:49

据我了解,您不必找到确切的 MSI 包。要卸载产品,只需了解其产品代码并运行 msiexec /x {PRODUCT-CODE-GUID-HERE} 即可。产品代码可以在“卸载”注册表项(通常为SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall)下找到。

As far as I understand, you don't have to find the exact MSI package. In order to uninstall a product, it is enough to know its product code and run msiexec /x {PRODUCT-CODE-GUID-HERE}. And product codes can be found under Uninstall registry key (typically, SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall).

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