C# winform程序如何添加至开机启动项?
RegistryKeyhklm=Registry.LocalMachine;RegistryKeysoftware=hklm.OpenSubKey("SOFTWARE",...
RegistryKey hklm = Registry.LocalMachine;
RegistryKey software = hklm.OpenSubKey("SOFTWARE", true);
RegistryKey aimdir = software.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
aimdir.SetValue(Path.GetFileName(Application.ExecutablePath), Application.ExecutablePath);
hklm.Close();
这段代码为什么无法添加,求救 展开
RegistryKey software = hklm.OpenSubKey("SOFTWARE", true);
RegistryKey aimdir = software.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run");
aimdir.SetValue(Path.GetFileName(Application.ExecutablePath), Application.ExecutablePath);
hklm.Close();
这段代码为什么无法添加,求救 展开
4个回答
展开全部
public static bool SetAutoRun(string keyName, string filePath)
{
try
{
RegistryKey Local= Registry.LocalMachine;
RegistryKey runKey =Local.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run\");
runKey.SetValue(keyName, filePath);
Local.Close();
}
catch
{
return false;
}
return true;
}
SetAutoRun("exeName", Application.StartupPath + "\\step.exe");
{
try
{
RegistryKey Local= Registry.LocalMachine;
RegistryKey runKey =Local.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run\");
runKey.SetValue(keyName, filePath);
Local.Close();
}
catch
{
return false;
}
return true;
}
SetAutoRun("exeName", Application.StartupPath + "\\step.exe");
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一楼的方法就不错,添加注册表启动项。
当然也可以手动添加快捷方式到启动菜单中。
当然也可以手动添加快捷方式到启动菜单中。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你可以添加到系统开始菜单的启动目录
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询