手机
当前位置:查字典教程网 >编程开发 >C#教程 >c# 开机启动项的小例子
c# 开机启动项的小例子
摘要:复制代码代码如下://路径,添加开机启动/删除开机启动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# 开机启动项的小例子】相关文章:

winfrom 在业务层实现事务控制的小例子

c#高效率导出多维表头excel的实例代码

C#面向对象特征的具体实现及作用详解

C#几种获取网页源文件代码的实例

C#简单获取时间差的小例子

c# 方法可变数量的参数

ref 和out传参的区别分析

C# 委托(delegate) 的小例子

c#之滚动字幕动画窗体的实现详解

c#判断输入的是不是数字的小例子

精品推荐
分类导航