I was wondering if it is possible to retreive from Windows a list of the applications installed INCLUDING their GUID and Upgrade GUID. I am开发者_高级运维 having problems getting my upgrade to work for one of my programs, and need to check these values for the old version of the program. Thanks for the help!
You can use MSI api functions to enumerate all installed products and to query their properties. If you replace MsiGetProductInfo
with MsiGetProductInfoEx
you will be able to query additional information such as the installation context or user SID associated for an installation.
However, this does not allow you to enumerate the UpgradeCode
. As far as I know MSI doesn't keep a record associating a ProductCode
with an UpgradeCode
; only the reverse mapping is available and you can enumerate the products related to an UpgradeCode
using the MsiEnumRelatedProducts
function.
Below you will find sample code which enumerates the installed or advertised products and their ProductCode
using C#:
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
class Program
{
[DllImport("msi.dll", CharSet = CharSet.Unicode)]
static extern Int32 MsiGetProductInfo(string product, string property,
[Out] StringBuilder valueBuf, ref Int32 len);
[DllImport("msi.dll", SetLastError = true)]
static extern int MsiEnumProducts(int iProductIndex,
StringBuilder lpProductBuf);
static void Main(string[] args)
{
StringBuilder sbProductCode = new StringBuilder(39);
int iIdx = 0;
while (MsiEnumProducts(iIdx++, sbProductCode) == 0)
{
Int32 productNameLen = 512;
StringBuilder sbProductName = new StringBuilder(productNameLen);
MsiGetProductInfo(sbProductCode.ToString(),
"ProductName", sbProductName, ref productNameLen);
Console.WriteLine("Product: {0}\t{1}", sbProductName, sbProductCode);
}
}
}
Update
If you still have the MSI installer of the previous version you can simply open the file using Orca and search for the UpgradeCode.
精彩评论