Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you create an application shortcut (.lnk file) in C# or using the .NET framework?

The result would be a .lnk file to the specified application or URL.

share|improve this question

3 Answers

up vote 53 down vote accepted

It's not as simple as I'd have liked, but there is a great class call ShellLink.cs at vbAccelerator

This code uses interop, but does not rely on WSH.

Using this class, the code to create the shortcut is:

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);
}
}
share|improve this answer
Anyone tried ShellLink on Vista? Looks like the code was written in 2003. – blak3r Jun 24 '09 at 1:25
It worked on Windows Server 2008 Standard 64bit SP2. I see no reason it wouldn't on Vista. – David Boike Jan 7 '11 at 19:49
7  
Works on Windows 7 and even in 64-bit applications :) – fparadis2 Jul 19 '11 at 14:25
Do you have a working class for this? – fiberOptics Jan 19 '12 at 13:23
1  
@Ryan - Make sure you get the FileIcon.cs file as well.... the two files work hand and hand – DJ Burb Mar 5 '12 at 20:30
show 4 more comments

I found something like this:

private void appShortcutToDesktop(string linkName)
{
    string deskDir = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory);

    using (StreamWriter writer = new StreamWriter(deskDir + "\\" + linkName + ".url"))
    {
        string app = System.Reflection.Assembly.GetExecutingAssembly().Location;
        writer.WriteLine("[InternetShortcut]");
        writer.WriteLine("URL=file:///" + app);
        writer.WriteLine("IconIndex=0");
        string icon = app.Replace('\\', '/');
        writer.WriteLine("IconFile=" + icon);
        writer.Flush();
    }
}

Original code at sorrowman's article "url-link-to-desktop"

share|improve this answer
8  
Oh jesus. Truly horrifying. Reversing engineering an undocumented file format, rather than using the intended API. – Ian Boyd Jun 12 '10 at 16:15
10  
Given the choice between interop / wsh or reverse engineering the file format i would choose the latter. I think it is a pretty safe bet they won't change the format anytime soon. – chrisortman Apr 6 '11 at 13:29
10  
Anuraj: You are cheating - this does not create a LNK but a URL file. – Helge Klein Aug 26 '11 at 11:46

You could try this: http://www.geekpedia.com/tutorial125_Create-shortcuts-with-a-.NET-application.html

share|improve this answer
Thanks. I'd seen this link and code. I was just wondering if there was a way to do it without WSH. – Chasler Oct 24 '08 at 16:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.