///
/// 设置开机自动启用
///
private void SetAutoStart()
{
try
{
string regPath = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run";
string path = Application.ExecutablePath.ToLower();
//将当前程序起动路径
string name = Path.GetFileName(path);
//获得应用程序名称
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#操作注册表。这个对你会有很大的帮助:
http://379910987.blog.163.com/blog/static/33523797201011465218983/
编写的代码在调试之后会生成.exe文件,直接打开就是了!