private void SetAutoStart()
{
try
{
string regPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
string path = Application.ExecutablePath.ToLower();
string name = System.IO.Path.GetFileName(path);
var regKey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(regPath, true);
if (regKey == null) regKey = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(regPath);
regKey.SetValue(name, path);
}
catch { }
}
相关文章
- 01-01关于xml中自动提示功能的设置
- 01-01MyEclipse自动补全与快捷键设置
- 01-01MyEclipse设置代码自动补全,及取消空格和‘=’补全
- 01-01springboot学习笔记(二)—— springboot的启动模式设置
- 01-01WinForm触摸屏程序功能界面长时间不操作自动关闭回到主界面 z
- 01-01vue-cli4 启动项目时自动在浏览器中打开
- 01-01如何设置Ultraedit自动换行
- 01-01Sublime Enter Key Setting自动缩进设置
- 01-01如何使用PuLP的Gurobi求解器设置MIP启动(初始解决方案)?
- 01-01项目启动报错怎么办?看看你Spring自动注入用对了嘛?@Autowired XxxService注入问题解决