博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#实现程序的开机启动
阅读量:5062 次
发布时间:2019-06-12

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

Code

using Microsoft.Win32;

private void btnShowOpen_Click(object sender, EventArgs e)

        {
            OpenFileDialog open = new OpenFileDialog();
            open.Filter = "可执行文件(*.exe)|*.exe";
            if (open.ShowDialog() == DialogResult.OK)
            {
                txtPath.Text = open.FileName;
            }
        }

        private bool runWhenStart(bool started,string exeName, string path)

        {          
            RegistryKey key = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);//打开注册表子项
            if (key == null)//如果该项不存在的话,则创建该子项
            {
                key = Registry.LocalMachine.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run");
            }
            if (started == true)
            {
                try
                {                   
                    key.SetValue(exeName, path);//设置为开机启动
                    key.Close();
                }
                catch
                {
                    return false;
                }
            }
            else
            {
                try
                {                   
                    key.DeleteValue(exeName);//取消开机启动
                    key.Close();
                }
                catch
                {
                    return false;
                }
            }
            return true;
        }

        private void btnSet_Click(object sender, EventArgs e)

        {
            if (txtPath.Text == "")//检查是否选择了文件
            {
                MessageBox.Show("请选择要随计算机一起启动的程序路径!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtPath.Focus();
                return;
            }           
            string path = txtPath.Text.Trim();
            string exeName = path.Substring(path.LastIndexOf("\\") + 1);
            if (!File.Exists(path))//检查该文件是否存在
            {
                MessageBox.Show("文件不存在!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtPath.Text = "";
                txtPath.Focus();
                return;
            }
            if (runWhenStart(true,exeName, path))
            {
                MessageBox.Show("设置成功!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("设置失败!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

        private void btnCancel_Click(object sender, EventArgs e)

        {
            if (txtPath.Text == "")//检查是否选择了文件
            {
                MessageBox.Show("请选择要撤销随计算机一起启动的程序路径!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtPath.Focus();
                return;
            }
            string path = txtPath.Text.Trim();
            string exeName = path.Substring(path.LastIndexOf("\\") + 1);
            if (!File.Exists(path))//检查该文件是否存在
            {
                MessageBox.Show("文件不存在!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
                txtPath.Text = "";
                txtPath.Focus();
                return;
            }
            if (runWhenStart(false, exeName, path))
            {
                MessageBox.Show("撤销成功!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("撤销失败!", "消息", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

转载于:https://www.cnblogs.com/a1656344531/archive/2012/12/28/2837897.html

你可能感兴趣的文章
SpringMVC的@Validated校验注解使用方法
查看>>
Python之os模块
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
【蓝桥杯】PREV-21 回文数字
查看>>
html 简介
查看>>
python使用上下文对代码片段进行计时,非装饰器
查看>>
js中比较实用的函数用法
查看>>
安装预览版镜像后无法检测到预览版更新的解决方案
查看>>
【bzoj5099】[POI2018]Pionek 双指针法
查看>>
别让安全问题拖慢了 DevOps!
查看>>
JAR打包和运行
查看>>
session如何保存在专门的StateServer服务器中
查看>>
react展示数据
查看>>
测试计划
查看>>
idea设置自定义图片
查看>>
[高级]Android多线程任务优化1:探讨AsyncTask的缺陷
查看>>
选择器
查看>>
rownum 的使用
查看>>
Mysql与Oracle 的对比
查看>>
MVC系列博客之排球计分(三)模型类的实现
查看>>