C#在Windows上,如何获取已安装程序的列表'目录

时间:2017-03-22 09:57:30

标签: c# windows

所以我找到了从这里获取已安装程序列表的解决方案。 Get installed applications in a system

但我想知道我是否可以获得每个目录的安装目录?我需要它,因为我需要找到该程序的所有可执行文件。

任何建议将不胜感激。

1 个答案:

答案 0 :(得分:0)

您需要从“HKLM \ Software \ Microsoft \ Windows \ CurrentVersion \ Uninstall”中找到所有已安装的应用 这是示例代码

private string FindByDisplayName(RegistryKey parentKey, string name)
    {
        string[] nameList = parentKey.GetSubKeyNames();
        for (int i = 0; i < nameList.Length; i++)
        {
            RegistryKey regKey =  parentKey.OpenSubKey(nameList[i]);
            try
            {
                if (regKey.GetValue("DisplayName").ToString() == name)
                {
                    return regKey.GetValue("InstallLocation").ToString();
                }
            }
            catch { }
        }
        return "";
    }

RegistryKey regKey = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninstall");
string location = FindByDisplayName(regKey, "MSN");
MessageBox.Show(location);

此示例将DisplayName键值与输入名称进行比较,如果找到值,则返回InstallLocation键值。

此致

Thiyagu Rajendran

**如果答案是有帮助的,请将答案标记为答案,如果答案没有,请将其取消标记。