在目录中创建应用程序快捷方式

在目录中创建应用程序快捷方式,第1张

在目录中创建应用程序快捷方式

这不是那么简单,我会很喜欢,但有一个很大的一流的呼叫Shelllink.cs在
vbAccelerator

代码使用互 *** 作,但不依赖WSH。

使用此类,创建快捷方式的代码为:

private static void configStep_addShortcutToStartupGroup(){    using (Shelllink shortcut = new Shelllink())    {        shortcut.Target = Application.ExecutablePath;        shortcut.WorkingDirectory = Path.GetDirectoryName(Application.ExecutablePath);        shortcut.Description = "My Shorcut Name Here";        shortcut.DisplayMode = Shelllink.linkDisplayMode.edmNormal;        shortcut.Save(STARTUP_SHORTCUT_FILEPATH);    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5005506.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存