C#实现程序开机启动的方法
程序员文章站
2023-11-25 10:01:46
本文实例讲述了c#实现程序开机启动的方法。分享给大家供大家参考,具体如下:
//此方法把启动项加载到注册表中
//获得应用程序路径
string strass...
本文实例讲述了c#实现程序开机启动的方法。分享给大家供大家参考,具体如下:
//此方法把启动项加载到注册表中 //获得应用程序路径 string strassname = application.startuppath + @"\" + application.productname + @".exe"; //获得应用程序名 string shortfilename = application.productname; registrykey rgkrun = registry.localmachine.opensubkey("software\\microsoft\\windows\\currentversion\\run", true); if (rgkrun == null) { rgkrun = registry.localmachine.createsubkey("software\\microsoft\\windows\\currentversion\\run"); } rgkrun.setvalue(shortfilename, strassname); //此删除注册表中启动项 //获得应用程序名 string shortfilename = application.productname; registrykey rgkrun = registry.localmachine.opensubkey("software\\microsoft\\windows\\currentversion\\run", true); if (rgkrun == null) { rgkrun = registry.localmachine.createsubkey("software\\microsoft\\windows\\currentversion\\run"); } rgkrun.deletevalue(shortfilename, false);
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#常见控件用法教程》、《c#数据结构与算法教程》、《c#面向对象程序设计入门教程》及《c#程序设计之线程使用技巧总结》
希望本文所述对大家c#程序设计有所帮助。
上一篇: 20个产品推广方法集合 总有你需要的
下一篇: Android 实现沉浸式状态栏的方法