HKLM\Software\Microsoft\CurrentVersion\explorer\Advanced. Change the value of "Start_ShowRun" to "1". If it doesn't exist, create the value name and set the value to "1". Voila!
For the C# developers (formatting courtesy of Manoli.net)
1: //Add run command to Start menu
2: RegistryKey runKey = Registry.LocalMachine.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\explorer\Advanced", true);
3: runKey.SetValue("Start_ShowRun", 1, RegistryValueKind.DWord);
No comments:
Post a Comment