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.

            Asked
            
        
        
            Active
            
        
            Viewed 1,202 times
        
    0
            
            
         
    
    
        Frank59
        
- 3,141
- 4
- 31
- 53
- 
                    1That image is too small to read. Please provide the information as text. – Mike Zboray Feb 19 '13 at 17:03
- 
                    You're going to need to add a larger image. – JoshDM Feb 19 '13 at 17:03
- 
                    on screen UpgradeCode in msi setup project in VS 2010.i need to get it for installed program – Frank59 Feb 19 '13 at 17:09
- 
                    I don't understand the context of your question. What exactly are you trying to do? – Christopher Painter Feb 19 '13 at 17:15
- 
                    Ok. Program istalled using MSI have 2 guids ProductCode and UpgradeCode(on screen in MSI Setup project). This guids installer use for upgrade and uninstal program(more info here http://msdn.microsoft.com/ru-ru/library/windows/desktop/aa372399%28v=vs.85%29.aspx). I can find ProductCode in Window Register when program installed, but i dont know how i can find UpgradeCode. – Frank59 Feb 19 '13 at 17:23
2 Answers
1
            
            
        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/
 
    
    
        mostlytech
        
- 814
- 9
- 13
0
            
            
        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).
 
    
    
        Stein Åsmul
        
- 39,960
- 25
- 91
- 164