Find GUID From MSI File

前端 未结 5 698
日久生厌
日久生厌 2020-12-16 01:01

How can I list the GUID of an installed program in Windows? Alternatively, is it easier to find the GUID if I have the MSI file?

I\'m looking through the MSI file w

5条回答
  •  温柔的废话
    2020-12-16 01:25

    Typically (though not universally) if a piece of software uses MSI-based installation the GUID can be found in the Uninstall entry. It will usually either be the key name or will appear in the UninstallString and/or UninstallPath value. Sometimes life is easy and there is a ProductGuid value.

    Uninstall entries can be found here:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
    

    On a 64-bit version of Windows there are two such keys, one for 64-bit software and a second for 32-bit software:

    HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall
    

提交回复
热议问题