Quick Launch Shortcut

S

Sean Fullerton

Ok dumb question but how do you add a shortcut to the Quick Launch bar when
creating a setup package in .NET?

Sean
 
M

Mattias Sjögren

Sean,
Ok dumb question but how do you add a shortcut to the Quick Launch bar when
creating a setup package in .NET?

First I suggest you to read this

http://blogs.gotdotnet.com/raymondc/PermaLink.aspx/441c4836-e2ef-4088-bc06-936d41886fbc

and think twice if you really need this feature.

If you still think so, you have to retrieve the user's Application
Data folder (using Environment.GetFolderPath() or the SHGetFolderPath
Win32 API), append "Microsoft\Internet Explorer\Quick Launch" to the
path and create a shortcut to your app there.

There's probably no built-in support for this in the setup project
system, since you shouldn't create icons there. So you may need a
custom action to do this.



Mattias
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top