Tuesday, February 2, 2010

Tray Notification in windows XP

//Posted by anil jain

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

No comments:

Post a Comment