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

关于C# Winform 程序开机自动启动

时间:2014-12-18 15:03:04      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:winform   blog   ar   io   os   for   on   div   art   

1.程序运行时调用下面方法即可。

 /// <summary>  
        /// 设置开机自动启用  
        /// </summary>  
        private void SetAutoStart()
        {
            try
            {
                string regPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";//注册表
                string path = Application.ExecutablePath.ToLower(); //获取.exe当前程序路径  
                //MessageBox.Show(path);
                string name = Path.GetFileName(path);  //获得应用程序名称  
                //MessageBox.Show(name);
                var regKey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(regPath, true);
                if (regKey == null) regKey = Microsoft.Win32.Registry.LocalMachine.CreateSubKey(regPath);
                regKey.SetValue(name, path);
            }
            catch
            {
            }
        }  

  

关于C# Winform 程序开机自动启动

标签:winform   blog   ar   io   os   for   on   div   art   

原文地址:http://www.cnblogs.com/Evan-Pei/p/4171614.html

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