C#中怎么让自己编写的代码在操作系统中自动运行?
3个回答
展开全部
/// <summary>
/// 设置开机自动启用
/// </summary>
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
{
}
}
/// 设置开机自动启用
/// </summary>
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/
http://379910987.blog.163.com/blog/static/33523797201011465218983/
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
编写的代码在调试之后会生成.exe文件,直接打开就是了!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询