Reputation: 3261
I have installed a program on my computer. How can I get the UpgradeCode
for this program?
The program is an MSI created in Visual Studio 2010.
Upvotes: 1
Views: 1372
Reputation: 42246
If you want to retrieve the product code and upgrade code for installed MSI files, you can try these two answers:
Finding the product code: How can I find the product GUID of an installed MSI setup? (PowerShell).
Finding the upgrade code: How can I find the Upgrade Code for an installed MSI file? (VBScript).
Upvotes: 0
Reputation: 814
If you have the MSI available, open it up with e.g. Orca, and check the Property table.
EDIT: http://msdn.microsoft.com/en-us/library/windows/desktop/aa370557(v=vs.85).aspx
another alternative is InstEdit http://www.instedit.com/
Upvotes: 1