مشاهده لیست برنامه ها نصب شده در سی شارپ
یک شنبه 26 آذر 1391 8:11 AM
private void GetInstalledPrograms()
{
RegistryKey localmachine = Registry.LocalMachine;
RegistryKey Uninstall = localmachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Uninst all");
foreach (string key in Uninstall.GetSubKeyNames())
{
RegistryKey activeKey = Uninstall.OpenSubKey(key);
string displayName = (string)activeKey.GetValue("DisplayName");
if (!String.IsNullOrEmpty(displayName))
listBox1.Items.Add(displayName);
}
}
مدیر تالار های: