windows-installer - 有人有MSIINV.EXE的副本吗?

标签 windows-installer uninstallation

关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

1年前关闭。




Improve this question




有人有MSIINV.EXE(MSI list 工具)的副本吗?它曾经可用的站点已关闭( http://www.huydao.net/ )。我正在尝试卸载某些组件以强制 Visual Studio 安装程序重新安装它们。我很抱歉,因为严格来说这不是一个编程问题,但我认为任何安装了一些 Visual Studio 测试版的人也可能遇到过这个问题。

最佳答案

我已经创建了一个 GitHub 存储库,其中包含原始源代码和 MsiInv.exe 的 .exe 副本。我是原作者。

https://github.com/ZisBoom/MsiInv.exe

我最常用的用法是 msiinv.exe -p列出所有已安装的产品,
msiinv.exe -p | findstr /i <pattern>查找特定产品。msiinv.exe -p <leading match>要求您知道产品的“startswith”名称,而 findstr 对子字符串很有用。

命令行选项:

msiinv.exe -?
Usage: msiinv.exe [option [option]]
    -p [product]    Product list
    -f      Feature state by product. (includes -p)
    -q      Component count by product (includes -p)
    -#      Component count and features states by product (-p -f -q)

    -x      Orphaned components.
    -m      Shared components.
    -c      Evaluate components (-x -m).

    -l      List of log files.

    -t      Elapsed time for run. (Benchmarking)

    -s      Reduced output.(-p -#)
    -n      Normal output. (default)
    -v      Verbose output. (default + feature and component lists)

关于windows-installer - 有人有MSIINV.EXE的副本吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/239264/

相关文章:

windows-installer - 在次要升级期间删除文件

WIX : Substitution in 'C:\Program Files (x86)\XXX' folder had been blocked by the 1 mask argument (the folder pair's iSwapAttrib member = 0)

visual-studio - 如何根据其版本生成MSI软件包名称?

inno-setup - Windows 10 上未显示 Inno Setup 开始菜单卸载快捷方式

Android - 无法卸载应用程序

wix - 隐藏在 WiX 中选中的复选框上的文本框

plugins - FireBreath插件自动安装

visual-studio - 安装 VS Ultimate 后卸载 VS Express 是否安全?

ruby-on-rails - 如何从 Ruby 1.9.2 降级到 Ruby 1.8.7 以运行 Rails 2.0.2

visual-studio - 部署项目卸载 - 删除文件?