导航

修改注册表启动项

Posted on 2017-10-31 15:28  清浅ヾ  阅读(142)  评论(0编辑  收藏  举报
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();