Frank59
Frank59

Reputation: 3261

How do I get the UpgradeCode for an installed MSI program?

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. enter image description here

Upvotes: 1

Views: 1372

Answers (2)

Stein Åsmul
Stein Åsmul

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

mostlytech
mostlytech

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

Related Questions