pythonwindows-installer

Get msi product name, version from command line


Is there a way to display the product name and version of a msi file from the command line? Or better yet, can this be done via python?


Solution

  • Try SummaryInformation.GetProperty(PID_TITLE) and SummaryInformation.GetProperty(PID_REVNUMBER) and all the other field names at the msilib docs page