码迷,mamicode.com
首页 > Windows程序 > 详细

C# 设置程序开机自启动

时间:2016-12-19 18:36:58      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:自启   current   windows   cat   .exe   close   app   table   ica   

设置启动

//设置开机自启动  
string path = Application.ExecutablePath;
RegistryKey rk = Registry.LocalMachine;
RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
rk2.SetValue("JcShutdown", path);
rk2.Close();
rk.Close();

 

取消启动

//"取消开机自启动
string path = Application.ExecutablePath;
RegistryKey rk = Registry.LocalMachine;
RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
rk2.DeleteValue("JcShutdown", false);
rk2.Close();
rk.Close();
    

C# 设置程序开机自启动

标签:自启   current   windows   cat   .exe   close   app   table   ica   

原文地址:http://www.cnblogs.com/farmer-y/p/6198478.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!