MSI keeps track of these in its own mysterious way, but that's what its APIs
are for. MsiEnumClients will tell you the products that a component guid is
using. For a complete list of every component on the system and its client
products, use this VBScript, save as .vbs
Option Explicit
Public in
Have you tried running your install from the command line with logging?
msiexec /i your-msi.msi /l*v log-file-name.log (install)
msiexec /x your-msi.msi /l*v log-file-name.log (uninstall)
You can use /l*vx for a LOT of debug info in the log file.
This might give you some insight as to wha
2 matches
Mail list logo