Thursday, September 8, 2011

Get System Register Key value

RegistryKey appConfigKey = Registry.LocalMachine.OpenSubKey(keypath);
if(appConfigKey!=null)
{
  string[] appValues = appConfigKey.GetValueNames();
  foreach(string v in appValues)
    console.write(v);
}

No comments:

Post a Comment