How can I find the GUID of an MSI package? I would like to script the removal of a program on a large number of desktops by using:

msiexec.exe /x ProductCode

Any reason why this would not work for any applications listed in "Add/Remove Programs?"

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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.

There are also other ways to find the GUID. As explained above HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\ will normally list the GUID.

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.

link|improve this answer
Good intel! Thanks. – Sam Erde May 28 '11 at 14:19
It can be a real hassle to get hold of Orca.exe since it is only available as part of the SDK. If anyone is in a rush, I am happy to email you a copy. At the moment Microsoft seems to have put it available only in the full SDK: microsoft.com/downloads/en/… . But as you know Microsoft changes things almost daily. – Glytzhkof May 28 '11 at 14:48
The SDK is fairly simple to get as well...but you do have to download more. A search can also turn up other MSI editors, such as InstEdit. – Sam Erde May 28 '11 at 15:02
feedback

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>}
link|improve this answer
feedback

Revision Number Summary Property:

[T]he Revision Number Summary property lists the product code GUIDs [...]

link|improve this answer
That's a pretty vague answer, but I did find what you were referring to. Thanks – Sam Erde Jul 31 '10 at 11:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.