2
可能重複:
How do you create an application shortcut (.lnk file) in C# or .Net創建應用程序快捷方式
我的傢伙,我需要了解如何在C#programmaticaly創建應用程序快捷方式
可能重複:
How do you create an application shortcut (.lnk file) in C# or .Net創建應用程序快捷方式
我的傢伙,我需要了解如何在C#programmaticaly創建應用程序快捷方式
試試這個幫助。
http://vbaccelerator.com/article.asp?id=4301
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);
}
}
Here是同一主題的一個CodeProject上的例子。
謝謝兄弟,這就是我所需要的 – Krish 2010-09-27 19:16:55