博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自动运行
阅读量:6155 次
发布时间:2019-06-21

本文共 1150 字,大约阅读时间需要 3 分钟。

代码
using Microsoft.Win32;
private void Form1_Load(object sender, EventArgs e)
{
    //获取程序执行路径..
    string starupPath = Application.ExecutablePath;
    //class Micosoft.Win32.RegistryKey. 表示Window注册表中项级节点,此类是注册表装.
    RegistryKey loca = Registry.LocalMachine;
    RegistryKey run = loca.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
   
    try
    {
       //SetValue:存储值的名称
 run.SetValue("WinForm",starupPath);
 MessageBox.Show(" 注册表添加成功!!",""提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
        loca.Close();
    }
    catch(Exception ee)
    {
        MessageBox.Show(ee.Message.ToString(),"提 示",MessageBoxButtons.OK,MessageBoxIcon.Error);
    }
}

 

 

第二种方法:

添加到注册表里直接用代码写到注册表里,也可以手动添加.
E:D:\\tractor.exe//可以是你的程序名和 完整路径就OK了.
也可以手动拖到启动里面....

 

自动运行、代码
RegistryKey hklm = Application.LocalMachine;
 RegistryKey run = hklm.CreateSubKey(@"SOFTWARE\Microsoft\Windows\Current\Version\Run");
 try
 {
    run.SetValue("tractor.exe","D:\\tractor.exe");
    MessageBox.Show("注册表添加成功!!","提示",MessageBoxButton.OK, MessageBoxIcon.Information);
    hklm.Close();
 }
 catch(Exception ee)
 {
    MessageBox.Show(my.Message.ToString(),"提示",MessageBoxButton.OK, MessageBoxIcon.Error);
  }

转载于:https://www.cnblogs.com/accumulater/p/6088637.html

你可能感兴趣的文章
【cl】工程导入
查看>>
C++学习:lambda表达式入门
查看>>
java.lang.NoClassDefFoundError: org/json/JSONException
查看>>
团队作业第五次—项目系统设计与数据库设计
查看>>
HIVE udf实例
查看>>
zookeeper中的QuorumPeerMain解析
查看>>
Bzoj1974 [Sdoi2010]auction 代码拍卖会
查看>>
Celery 分布式任务队列快速入门
查看>>
【Leetcode】Count and Say
查看>>
jQuery jsonp跨域请求详解
查看>>
取得Web程序和非Web程序的根目录的N种取法(C#)
查看>>
经典计算机算法设计方法(1) -- 递归与迭代转化
查看>>
AutoReleasePool 和 ARC 以及Garbage Collection
查看>>
蛇形填数
查看>>
海量数据处理
查看>>
今天我装Ubuntu啦
查看>>
【bzoj 2339】[HNOI2011]卡农(数论--排列组合+逆元+递推)
查看>>
MD5加密方法-MVC
查看>>
Matlab绘图(一二三维)
查看>>
容易被遗忘的十种健康食物
查看>>