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

C# 设置/取消程序 开机自启动

时间:2015-04-24 14:05:24      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:

(修改注册表)
【设置开机自启动】
技术分享
using Microsoft.Win32;//添加命名空间

public static bool SetAutoRun(string keyName,string filePath) { try { RegistryKey runKey=Registry.LocalMachine.OpenSubKey(@"\SOFTWARE\Microsoft\Windows\CurrentVersion\Run",true); runKey.SetValue(keyName,filePath); runKey.Close(); } catch { return false; } return true; }
技术分享

 

【取消开机自启动】

技术分享
using Microsoft.Win32;//添加命名空间

public static bool DeleteAutoRun(string keyName,string filePath) { try { RegistryKey runKey=Registry.LocalMachine.OpenSubKey(@"\SOFTWARE\Microsoft\Windows\CurrentVersion\Run",true); runKey.DeleteValue(keyName,filePath); runKey.Close(); } catch { return false; } return true; }
另外一种方式,将对应的应用,或者应用的快捷方式放置在开始文件列表中。

C# 设置/取消程序 开机自启动

标签:

原文地址:http://www.cnblogs.com/Yellow0-0River/p/4453150.html

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