c# 开机启动项的小例子_C#教程-查字典教程网
c# 开机启动项的小例子
c# 开机启动项的小例子
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下://路径,添加开机启动/删除开机启动publicstaticvoidSetAutoRun(stringfileName,b...

复制代码 代码如下:

//路径, 添加开机启动/删除开机启动

public static void SetAutoRun(string fileName, bool isAutoRun)

{

RegistryKey reg = null;

try

{

if (!System.IO.File.Exists(fileName))

throw new Exception("该文件不存在!");

String name = fileName.Substring(fileName.LastIndexOf(@"") + 1);

reg = Registry.LocalMachine.OpenSubKey(@"SOFTWAREMicrosoftWindowsCurrentVersionRun", true);

if (reg == null)

reg = Registry.LocalMachine.CreateSubKey(@"SOFTWAREMicrosoftWindowsCurrentVersionRun");

if (isAutoRun)

reg.SetValue(name, fileName);

else

reg.SetValue(name, false);

}

catch (Exception ex)

{

throw new Exception(ex.ToString());

}

finally

{

if (reg != null)

reg.Close();

}

}

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新C#教程学习
    热门C#教程学习
    编程开发子分类