当前位置:首页 >.NET > 正文内容

C# 实现程序开机自启动

大滑稽7年前 (2018-02-14).NET2051
private void checkBox8_CheckedChanged(object sender, EventArgs e)
{
   try
	{
		//设置开机自启动  
		if (checkBox8.Checked == true)
		{
			/*方法一*/
			string StartupPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.CommonStartup);
			//获得文件的当前路径
			string dir = Directory.GetCurrentDirectory();
			//获取可执行文件的全部路径
			string exeDir = dir + @"\自动备份.exe.lnk";
			File.Copy(exeDir, StartupPath + @"\自动备份.exe.lnk", true);
			/*方法二*/
			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();
		}
		//取消开机自启动  
		else
		{
			/*方法一*/
			string StartupPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.CommonStartup);
			System.IO.File.Delete(StartupPath + @"\EcgNetPlug.exe.lnk");
			/*方法二*/
			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();
		}
	}
	catch (Exception ex)
	{
		MessageBox.Show(ex.Message);
	}
}


扫描二维码推送至手机访问。

版权声明:本文由第★一★次发布,如需转载请注明出处。

本文链接:https://wpers.net/post/5.html

“C# 实现程序开机自启动” 的相关文章

Cbo控件数据源绑定

 //Cbo控件数据源绑定DataTable DtType = noteType.GetTypeList("");         ...

C#遍历控件的方法

首先,要想遍历,就必须找到你想找的表单里面的所有控件,然后一个个的逐一比对,当找到了你需要的控件的时候,再做你需要的操作。1、foreach方法foreach (Control control in ...

Linq读写XML

         private List<News> GetNews(string html)    &n...

修改注册表限制软件使用次数

 private void Form1_Load(object sender, System.EventArgs e){RegistryKey RootKey,RegKey; //项名为:HKEY_CURRENT_USER\So...

c#中分页显示数据

     //c#中分页显示数据    public partial class Form1 : Form    {  ...

获取Color的几种方式

//获取Color的几种方式Color.FromKnownColor(KnownColor.ControlLight);Color.FromArgb(int r,int g,int b);Color.FromArgb(int a,int r...