using Microsoft.Win32; RegistryKey key = Registry.LocalMachine; RegistryKey soft = key.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon", true); soft.SetValue("Shell", "explorer.exe"); //可以改为其它的启动程序,但是路径必须完整,如:(D:\Data\abc.exe) soft.Close(); key.Close();
世界上最可怕事情是比我们优秀的人比我们还努力