这不是那么简单,我会很喜欢,但有一个很大的一流的呼叫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); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)