翼度科技»论坛 编程开发 .net 查看内容

C#实现软件开机自启动(不需要管理员权限)

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
目录

原理简介

本文参考C#/WPF/WinForm/程序实现软件开机自动启动的两种常用方法,将里面中的第一种方法做了封装成AutoStart类,使用时直接两三行代码就可以搞定。
自启动的原理是将软件的快捷方式创建到计算机的自动启动目录下(不需要管理员权限),这种方法更加通用、限制更少。
使用方法

使用方法如下:
  1. //快捷方式的描述、名称的默认值是当前的进程名,自启动默认为正常窗口,一般情况下不需要手动设置
  2. //设置快捷方式的描述,
  3. AutoStart.Instance.QuickDescribe = "软件描述";
  4. //设置快捷方式的名称
  5. AutoStart.Instance.QuickName = "软件名称";
  6. //设置自启动的窗口类型,后台服务类的软件可以设置为最小窗口
  7. AutoStart.Instance.WindowStyle = WshWindowStyle.WshMinimizedFocus;
  8. //快捷方式设置true时,有就忽略、没有就创建,自启动快捷方式只能存在一个
  9. //设置开机自启动,true 自启动,false 不自启动
  10. AutoStart.Instance.SetAutoStart(SysParam.Instance.OnOff);
  11. //设置桌面快捷方式,true 创建桌面快捷方式(有就跳过,没有就创建),false 删除桌面快捷方式
  12. AutoStart.Instance.SetDesktopQuick(true);
复制代码
完整代码

引用以下命名空间:
  1. //添加引用,在 Com 中搜索 Windows Script Host Object Model
  2. using IWshRuntimeLibrary;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Diagnostics;
  6. using System.IO;
复制代码
AutoStart类代码:
  1. public class AutoStart
  2. {
  3.     #region 公开
  4.     /// <summary>
  5.     /// 唯一实例,也可以自定义实例
  6.     /// </summary>
  7.     public static AutoStart Instance { get; private set; } = new AutoStart();
  8.     /// <summary>
  9.     /// 快捷方式描述,默认值是当前的进程名
  10.     /// </summary>
  11.     public string QuickDescribe { get; set; } = Process.GetCurrentProcess().ProcessName;
  12.     /// <summary>
  13.     /// 快捷方式名称,默认值是当前的进程名
  14.     /// </summary>
  15.     public string QuickName { get; set; } = Process.GetCurrentProcess().ProcessName;
  16.     /// <summary>
  17.     /// 自启动窗口类型,默认值是正常窗口
  18.     /// </summary>
  19.     public WshWindowStyle WindowStyle { get; set; } = WshWindowStyle.WshNormalFocus;
  20.     /// <summary>
  21.     /// 设置开机自动启动-只需要调用改方法就可以了参数里面的bool变量是控制开机启动的开关的,默认为开启自启启动
  22.     /// </summary>
  23.     /// <param name="onOff">自启开关</param>
  24.     public void SetAutoStart(bool onOff = true)
  25.     {
  26.         if (onOff)//开机启动
  27.         {
  28.             //获取启动路径应用程序快捷方式的路径集合
  29.             List<string> shortcutPaths = GetQuickFromFolder(systemStartPath, appAllPath);
  30.             //存在2个以快捷方式则保留一个快捷方式-避免重复多于
  31.             if (shortcutPaths.Count >= 2)
  32.             {
  33.                 for (int i = 1; i < shortcutPaths.Count; i++)
  34.                 {
  35.                     DeleteFile(shortcutPaths[i]);
  36.                 }
  37.             }
  38.             else if (shortcutPaths.Count < 1)//不存在则创建快捷方式
  39.             {
  40.                 CreateShortcut(systemStartPath, QuickName, appAllPath, QuickDescribe,WindowStyle);
  41.             }
  42.         }
  43.         else//开机不启动
  44.         {
  45.             //获取启动路径应用程序快捷方式的路径集合
  46.             List<string> shortcutPaths = GetQuickFromFolder(systemStartPath, appAllPath);
  47.             //存在快捷方式则遍历全部删除
  48.             if (shortcutPaths.Count > 0)
  49.             {
  50.                 for (int i = 0; i < shortcutPaths.Count; i++)
  51.                 {
  52.                     DeleteFile(shortcutPaths[i]);
  53.                 }
  54.             }
  55.         }
  56.         //创建桌面快捷方式-如果需要可以取消注释
  57.         //CreateDesktopQuick(desktopPath, QuickName, appAllPath);
  58.     }
  59.     /// <summary>
  60.     /// 在桌面上创建快捷方式-如果需要可以调用
  61.     /// </summary>
  62.     public void SetDesktopQuick(bool isCreate)
  63.     {
  64.         string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
  65.         List<string> shortcutPaths = GetQuickFromFolder(desktopPath, appAllPath);
  66.         if (isCreate)
  67.         {
  68.             //没有就创建
  69.             if (shortcutPaths.Count < 1)
  70.             {
  71.                 CreateShortcut(desktopPath, QuickName, appAllPath, QuickDescribe, WshWindowStyle.WshNormalFocus);
  72.             }
  73.         }
  74.         else
  75.         {
  76.             //有就删除
  77.             for (int i = 0; i < shortcutPaths.Count; i++)
  78.             {
  79.                 DeleteFile(shortcutPaths[i]);
  80.             }
  81.         }
  82.     }
  83.     #endregion 公开
  84.     #region 私有
  85.     /// <summary>
  86.     /// 自动获取系统自动启动目录
  87.     /// </summary>
  88.     private string systemStartPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
  89.     /// <summary>
  90.     /// 自动获取程序完整路径
  91.     /// </summary>
  92.     private string appAllPath = Process.GetCurrentProcess().MainModule.FileName;
  93.     /// <summary>
  94.     /// 自动获取桌面目录
  95.     /// </summary>
  96.     private string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);
  97.     /// <summary>
  98.     ///  向目标路径创建指定文件的快捷方式
  99.     /// </summary>
  100.     /// <param name="directory">目标目录</param>
  101.     /// <param name="shortcutName">快捷方式名字</param>
  102.     /// <param name="targetPath">文件完全路径</param>
  103.     /// <param name="description">描述</param>
  104.     /// <param name="iconLocation">图标地址</param>
  105.     /// <returns>成功或失败</returns>
  106.     private bool CreateShortcut(string directory, string shortcutName, string targetPath, string description, WshWindowStyle windowStyle, string iconLocation = null)
  107.     {
  108.         try
  109.         {
  110.             //目录不存在则创建
  111.             if (!Directory.Exists(directory)) Directory.CreateDirectory(directory);
  112.             //合成路径
  113.             string shortcutPath = Path.Combine(directory, string.Format("{0}.lnk", shortcutName));
  114.             //存在则不创建
  115.             if (System.IO.File.Exists(shortcutPath)) return true;
  116.             //添加引用 Com 中搜索 Windows Script Host Object Model
  117.             WshShell shell = new IWshRuntimeLibrary.WshShell();
  118.             //创建快捷方式对象
  119.             IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(shortcutPath);
  120.             //指定目标路径
  121.             shortcut.TargetPath = targetPath;
  122.             //设置起始位置
  123.             shortcut.WorkingDirectory = Path.GetDirectoryName(targetPath);
  124.             //设置运行方式,默认为常规窗口
  125.             shortcut.WindowStyle = (int)windowStyle;
  126.             //设置备注
  127.             shortcut.Description = description;
  128.             //设置图标路径
  129.             shortcut.IconLocation = string.IsNullOrWhiteSpace(iconLocation) ? targetPath : iconLocation;
  130.             //保存快捷方式
  131.             shortcut.Save();
  132.             return true;
  133.         }
  134.         catch (Exception ex)
  135.         {
  136.             string temp = ex.Message;
  137.             temp = "";
  138.         }
  139.         return false;
  140.     }
  141.     /// <summary>
  142.     /// 获取指定文件夹下指定应用程序的快捷方式路径集合
  143.     /// </summary>
  144.     /// <param name="directory">文件夹</param>
  145.     /// <param name="targetPath">目标应用程序路径</param>
  146.     /// <returns>目标应用程序的快捷方式</returns>
  147.     private List<string> GetQuickFromFolder(string directory, string targetPath)
  148.     {
  149.         List<string> tempStrs = new List<string>();
  150.         tempStrs.Clear();
  151.         string tempStr = null;
  152.         string[] files = Directory.GetFiles(directory, "*.lnk");
  153.         if (files == null || files.Length < 1)
  154.         {
  155.             return tempStrs;
  156.         }
  157.         for (int i = 0; i < files.Length; i++)
  158.         {
  159.             //files[i] = string.Format("{0}\\{1}", directory, files[i]);
  160.             tempStr = GetAppPathFromQuick(files[i]);
  161.             if (tempStr == targetPath)
  162.             {
  163.                 tempStrs.Add(files[i]);
  164.             }
  165.         }
  166.         return tempStrs;
  167.     }
  168.     /// <summary>
  169.     /// 获取快捷方式的目标文件路径-用于判断是否已经开启了自动启动
  170.     /// </summary>
  171.     /// <param name="shortcutPath"></param>
  172.     /// <returns></returns>
  173.     private string GetAppPathFromQuick(string shortcutPath)
  174.     {
  175.         //快捷方式文件的路径 = @"d:\Test.lnk";
  176.         if (System.IO.File.Exists(shortcutPath))
  177.         {
  178.             WshShell shell = new WshShell();
  179.             IWshShortcut shortct = (IWshShortcut)shell.CreateShortcut(shortcutPath);
  180.             //快捷方式文件指向的路径.Text = 当前快捷方式文件IWshShortcut类.TargetPath;
  181.             //快捷方式文件指向的目标目录.Text = 当前快捷方式文件IWshShortcut类.WorkingDirectory;
  182.             return shortct.TargetPath;
  183.         }
  184.         else
  185.         {
  186.             return "";
  187.         }
  188.     }
  189.     /// <summary>
  190.     /// 根据路径删除文件-用于取消自启时从计算机自启目录删除程序的快捷方式
  191.     /// </summary>
  192.     /// <param name="path">路径</param>
  193.     private void DeleteFile(string path)
  194.     {
  195.         FileAttributes attr = System.IO.File.GetAttributes(path);
  196.         if (attr == FileAttributes.Directory)
  197.         {
  198.             Directory.Delete(path, true);
  199.         }
  200.         else
  201.         {
  202.             System.IO.File.Delete(path);
  203.         }
  204.     }
  205.     #endregion 私有
  206. }
复制代码
来源:https://www.cnblogs.com/timefiles/archive/2023/07/01/17519239.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具