C#实现在启动目录创建快捷方式的方法

作者:我心依旧 时间:2021-05-29 13:54:21 

本文实例讲述了C#实现在启动目录创建快捷方式的方法。分享给大家供大家参考。具体如下:

添加引用,选择 COM 选项卡并选择 Windows Script Host Object Model


/// <summary>
/// 将文件放到启动文件夹中开机启动
/// </summary>
/// <param name="setupPath">启动程序</param>
/// <param name="linkname">快捷方式名称</param>
/// <param name="description">描述</param>
public void SetSetupWindowOpenRun(string setupPath, string linkname, string description)
{
string desktop = Environment.GetFolderPath(Environment.SpecialFolder.Startup) + "\\" + linkname + ".lnk";
if (System.IO.File.Exists(desktop))
 System.IO.File.Delete(desktop);
IWshRuntimeLibrary.WshShell shell;
IWshRuntimeLibrary.IWshShortcut shortcut;
try
{
 shell = new IWshRuntimeLibrary.WshShell();
 shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(desktop);
 shortcut.TargetPath = setupPath;//程序路径
 shortcut.Arguments = "";//参数
 shortcut.Description = description;//描述
 shortcut.WorkingDirectory = System.IO.Path.GetDirectoryName(setupPath);//程序所在目录
 shortcut.IconLocation = setupPath;//图标  
 shortcut.WindowStyle = 1;
 shortcut.Save();
}
catch (Exception ex)
{
 System.Windows.Forms.MessageBox.Show(ex.Message, "友情提示");
}
finally
{
 shell = null;
 shortcut = null;
}
}

希望本文所述对大家的C#程序设计有所帮助。

标签:C#,快捷方式
0
投稿

猜你喜欢

  • Android实现记住用户名和密码功能

    2023-10-06 13:02:07
  • Android实现视图轮播效果

    2023-04-14 08:52:10
  • Java实现添加条形码到PDF表格的方法详解

    2023-04-26 12:37:25
  • feign实现传递参数的三种方式小结

    2021-06-18 00:09:53
  • 安卓GreenDao框架一些进阶用法整理

    2023-06-17 03:27:21
  • Mybatis Plus 中的LambdaQueryWrapper示例详解

    2023-03-26 04:52:06
  • C#使用表达式树(LambdaExpression)动态更新类的属性值(示例代码)

    2022-05-17 11:46:16
  • 基于Aforge摄像头调用简单实例

    2022-07-23 03:44:20
  • java8中Stream的使用以及分割list案例

    2022-08-09 10:08:48
  • 基于Android6.0实现弹出Window提示框

    2023-01-12 05:23:25
  • Java实现简易生产者消费者模型过程解析

    2023-12-03 01:33:26
  • Struts2+uploadify多文件上传实例

    2023-03-19 07:53:35
  • 介绍C# 泛型类在使用中约束

    2023-06-23 21:39:40
  • SpringBoot全局配置long转String丢失精度的问题解决

    2023-02-19 22:58:49
  • WPF自定义选择年月控件详解

    2021-09-05 23:48:34
  • 操作xml,将xml数据显示到treeview的C#代码

    2023-01-02 19:56:48
  • Android AlertDialog的几种用法详解

    2023-12-02 18:15:50
  • Andriod studio 打包aar 的方法

    2023-12-13 19:32:36
  • Java+element实现excel的导入和导出

    2022-07-31 12:45:53
  • 详解SpringBoot2.0的@Cacheable(Redis)缓存失效时间解决方案

    2023-07-23 07:20:54
  • asp之家 软件编程 m.aspxhome.com