【导言】
适用于.Net framework 2.0 以上,C/S 架构
1.private void AutoRun()
2. {
3. string starupPath =
Application.ExecutablePath;
4. RegistryKey loca =
Registry.LocalMachine;
5. RegistryKey run =
loca.CreateSubKey(@"SOFTWARE\Microsoft\
Windows\CurrentVersion\Run");
6. try
7. {
8. //SetValue:存储值的名称
9. if (IsAutoRun == false)
run.SetValue("MessageRecSend", false);// 取
消开机运行
10. else
run.SetValue("MessageRecSend",
starupPath);//设置开机运行
11. loca.Close();
12. }
评论1
最新资源