vote up 7 vote down star
8

The title says it all. If anyone has a routine or code snip-it handy that will save me the google trolling that would be great. Otherwise I'll post whatever I come up with.

Thanks

flag

56% accept rate

3 Answers

vote up 1 vote down

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

link|flag
Thanks. I'd seen this link and code. I was just wondering if there was a way to do it without WSH. – rathkopf Oct 24 '08 at 16:42
vote up 2 vote down

Take a look at the format spec and manually write it out - it's not very complex. Way better (IMO) than most suggestions that tell you to use WSH.

link|flag
Thanks, this would be great, but this is a quick one-off for a utility for a client, so I don't think that I can invest the time required to do this properly. It would be great if it were available in the public domain somewhere. – rathkopf Oct 24 '08 at 16:39
This would work great until MS decides to change the format of the shortcut. If it's not documented by MS, it's an implementation detail and they're free to change it. That's why WSH exists: if the format changes, WSH will be updated. – OwenP Oct 24 '08 at 16:53
Dangerous/brittle, as others noted, but useful, so I upvoted. – PhiLho Dec 6 '08 at 11:38
Yes, it's brittle, though I'm no so certain why everyone thinks it's so bad (bad enough to downmod several times). If MS changes the format, then they have to change WSH, and that change has to be propagated to every PC out there. Exactly what is the liklihood of that? – ctacke Dec 6 '08 at 18:07
if they changed it the windows OS would likely still be able to read the old format, so I'm not sure why people would downvote this? – Maslow Aug 28 at 13:52
vote up 4 vote down check

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

.net vbAccelerator graphic

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

And, the code is in C#.

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);
		}
	}

I used to love some of the projects on this site when I was working in VB6. It is nice to see some good .net content on it.

link|flag
Anyone tried ShellLink on Vista? Looks like the code was written in 2003. – blak3r Jun 24 at 1:25

Your Answer

Get an OpenID
or

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