Thank you for posting at Dotnetfunda [Administrator]
String regstryKey = @"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"; using(Microsoft.Win32.RegistryKey keyName = Registry.LocalMachine.OpenSubKey(regstryKey )) { foreach(string subKey in keyName.GetSubKeyNames()) { using(RegistryKey subKey1 = keyName.OpenSubKey(subkey)) { Response.Write(subKey1.GetValue("DisplayName")); } } }
Gaurav Agrawal http://www.planetofcoders.com/
Regards, Lakshmi Naraayanan.S http://dotnettechrocks.blogspot.in/ http://abaprocker.blogspot.com/
Login to post response