Find GUID of MSI Package

Solution 1:

UPDATE: Try this stackoverflow.com answer instead: How can I find the product GUID of an installed MSI setup? or even this one: Find GUID From MSI File .


The Windows SDK tool Orca will allow you to open and view all tables in an MSI file. Once you have the MSI open, you can either navigate to the Property table and look for the "product code" entry, or you can select "View => Summary Information..." and look for the "package code" entry. Either the package or the product guid can be used for uninstall.

See an Orca screenshot of how to find the product code in the MSI: WiX - Doing a major upgrade on a multi instance install

There are also other ways to find the GUID:

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

HKLM\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall

HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall

It still appears you have to download the MSI SDK to obtain Orca. If you don't have access to Orca and can't be bothered downloading the SDK, any viewer capable of reading a MSSQL database file (com stuctured storage file), should be able to open the MSI file and view the contents. Make a copy of the MSI before opening it in a viewer and open the copy. Just to be sure. Once open you navigate to the Property table and look for the product GUID.

UPDATE: A list of free MSI viewers (towards bottom).

Also check these posts on stackoverflow.com with information on how to uninstall via Powershell:

  • How to uninstall with msiexec using product id guid without .msi file present
  • Uninstall script not performing correctly
  • How can I find the product GUID of an installed MSI setup?
  • Find GUID From MSI File

Solution 2:

It is a registry key:

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{<guid>}

or if the platform is x64 and the application is 32-bit:

HKLM\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{<guid>}

Solution 3:

A light-weight freeware tool like InstEd can be used. Just open the MSI, on the "Tables" tab, click on "Property" on the left, then on the right, locate "ProductCode".


Solution 4:

There is also a very helpful GUI tool called Product Browser which appears to be made by Microsoft or at least an employee of Microsoft.

It can be found on Github here Product Browser

The latest version as of (10/9/20) is available here

I personally had a very easy time locating the GUID I needed with this.