Найти программу в компьютере по имени Dokan

Как найти программу в компьютере по имени Dokan и вывести в консоль, что она есть? По этому коду выводит все программы, как дописать чтобы только Dokan был?

 string registryKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall";
                RegistryKey key = Registry.LocalMachine.OpenSubKey(registryKey);
                if (key != null)
                {
                    foreach (String a in key.GetSubKeyNames())
                    {
                        RegistryKey subkey = key.OpenSubKey(a);
                        sw.WriteLine(subkey.GetValue("DisplayName"));
                    }
                }

                registryKey = @"SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall";
                key = Registry.LocalMachine.OpenSubKey(registryKey);
                if (key != null)
                {
                    foreach (String a in key.GetSubKeyNames())
                    {
                        RegistryKey subkey = key.OpenSubKey(a);
                        sw.WriteLine(subkey.GetValue("DisplayName"));
                    }
                }

Ответы (0 шт):