怎么让一个用C#写的程序,开机时自动运行?
我用C#写了一个程序,我想让它开机时自动运行。哪位大哥?请告诉下我这个该怎么办啊?(说详细点嘛),小弟在此谢谢了哦...
我用C#写了一个程序,我想让它开机时自动运行。哪位大哥?请告诉下我这个该怎么办啊?(说详细点嘛),小弟在此谢谢了哦
展开
3个回答
展开全部
拖个快捷方式,到 [开始]菜单\程序\启动 目录下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1 写注册表。
2 写系统服务。
3 最简单实用的,如果对优先级没有要求的话,直接把exe拷到C:\Documents and Settings\登录用户名\「开始」菜单\程序\启动 里就可以了。
2 写系统服务。
3 最简单实用的,如果对优先级没有要求的话,直接把exe拷到C:\Documents and Settings\登录用户名\「开始」菜单\程序\启动 里就可以了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
/// <summary>
/// 设置应用程序开机自动运行
/// </summary>
/// <param name="fileName">应用程序的文件名</param>
/// <param name="isAutoRun">是否自动运行,为false时,取消自动运行</param>
/// <exception cref="System.Exception">设置不成功时抛出异常</exception>
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("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
if (reg == null)
reg = Registry.LocalMachine.CreateSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
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();
}
}
/// 设置应用程序开机自动运行
/// </summary>
/// <param name="fileName">应用程序的文件名</param>
/// <param name="isAutoRun">是否自动运行,为false时,取消自动运行</param>
/// <exception cref="System.Exception">设置不成功时抛出异常</exception>
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("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
if (reg == null)
reg = Registry.LocalMachine.CreateSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
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();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询