通过应用程序获取已安装应用程序路径的正确方法.C#中的名称

本文关键字:应用程序 方法 获取 安装 路径 | 更新日期: 2023-09-27 18:28:35

我使用此函数查找任何已安装的应用程序

但是参数"InstallLocation"根本不起作用。

有线索吗?

谢谢!!

void FindApplication(string appName)
{
    StringBuilder sbProductCode = new StringBuilder(39);
    int iIdx = 0;
    while (0 == MsiEnumProducts(iIdx++, sbProductCode))
    {
        Int32 productNameLen = 512;
        StringBuilder sbProductName = new StringBuilder(productNameLen);
        MsiGetProductInfo(sbProductCode.ToString(), "ProductName", sbProductName, ref productNameLen);
        if (sbProductName.ToString().Contains(appName))
        {
             Int32 installDirLen = 2048;
             StringBuilder sbInstallDir = new StringBuilder(installDirLen);
             MsiGetProductInfo(sbProductCode.ToString(),"InstallLocation", sbInstallDir, ref installDirLen);
             string result = string.Format("ProductName {0}: {1}", sbProductName, sbInstallDir);
             }
       }
}

通过应用程序获取已安装应用程序路径的正确方法.C#中的名称

我访问了以下链接,它们似乎并不过时:

  • MsiGetProductInfo函数
  • MsiGetProductInfoEx函数

我看到的唯一可以使用的密钥是:

  • ARPINSTALLLOCATION
  • INSTALLDIR
  • INSTALLPROPERTY_INSTALLLOCATION
  • 安装位置

我应该指出,似乎MsiGetProductInfoEx(第二个链接)应该用于收集另一个用户添加的已发布/已安装产品的信息;并且需要行政特权。

我找到了其他解决方案,它运行良好。

string FindPathByInstalledAppEXEName(string appEXEName)
{
    string path = string.Empty;
    try
    {
        RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software'Microsoft'Installer'Assemblies");
        string regfilepath = string.Empty;
        if (key != null)  // Make sure there are Assemblies
        {
            foreach (string Keyname in key.GetSubKeyNames())
            {
                if (Keyname.IndexOf(appEXEName) > 0)
                {
                    regfilepath = Keyname;
                    break;
                }
            }
        }
        if (!string.IsNullOrEmpty(regfilepath))
        {
            string fullpath = "";
            for (int a = 0; a < regfilepath.Length; a++)
            {
                if (regfilepath.IndexOf("|", a, 1) > 0)
                    fullpath += "''";
                else
                    fullpath += regfilepath.Substring(a, 1);
            }
            path = fullpath.Substring(0, fullpath.LastIndexOf("''") + 1);
        }
    }
    catch // (Exception ex)
    {
    }
    return path;
}