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.
|
|
|
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:
|
|||||||||||||||
|
|
I found something like this:
Original code at sorrowman's article "url-link-to-desktop" |
|||||||||||||
|
|
You could try this: http://www.geekpedia.com/tutorial125_Create-shortcuts-with-a-.NET-application.html |
|||
|