当前位置 : 主页 > 网络编程 > net编程 >

C# 创建快捷方式

来源:互联网 收集:自由互联 发布时间:2023-09-07
1、在项目中添加引用,ProjectAdd ReferenceCOMWindows Script Host Object Model. 2、添加 using IWshRuntimeLibrary; #region 创建快捷方式 WshShell wshShell = new WshShell(); string path = System.IO.Path.Combine(Environment.Get

1、在项目中添加引用,Project > Add Reference > COM > Windows Script Host Object Model.

2、添加

using IWshRuntimeLibrary;
#region 创建快捷方式
WshShell wshShell = new WshShell();
string path = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory), "哈哈哈.lnk");
IWshShortcut shortcut = (IWshShortcut)wshShell.CreateShortcut(path);
shortcut.Description = "11111";
shortcut.TargetPath = Application.StartupPath + @"\OnlyRunOneEXE.exe";
shortcut.Save();
#endregion

龙腾一族至尊龙骑

网友评论