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

C# 开机自动启动

时间:2017-10-29 16:49:05      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:local   string   config   class   proc   version   tostring   delete   manager   

       if (ConfigurationManager.AppSettings["IsBoot"].ToString().Trim().ToUpper() == "TRUE")
            {
                //设置开机启动
                string path = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
                RegistryKey rk = Registry.LocalMachine;
                RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
                rk2.SetValue("JcShutdown", path);
                rk2.Close();
                rk.Close();

            }
            else
            {
                string path = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
                RegistryKey rk = Registry.LocalMachine;
                RegistryKey rk2 = rk.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
                rk2.DeleteValue("JcShutdown", false);
                rk2.Close();
                rk.Close();
            }

App.Config:

  <!--是否开机启动 TRUE 启动 FALSE 禁止-->
  <add key="IsBoot" value="FALSE"/>


  

 

 

C# 开机自动启动

标签:local   string   config   class   proc   version   tostring   delete   manager   

原文地址:http://www.cnblogs.com/haibing0107/p/7750291.html

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