Tuesday, February 2, 2010

Clear Run list in windows XP

//posted by anil jain

RegistryKey Rkey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\RunMRU", true);
if (Rkey != null)
{
Registry.CurrentUser.DeleteSubKeyTree("Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\RunMRU\\");
}

No comments:

Post a Comment