Archive: Create IE Favorite


Create IE Favorite
I need to create an IE6 favorite for users based on their logon ID. I know how to get the logon ID and everything, but can I create an IE favorite with NSIS.


If you can get the all users Favourites folder then you just need to create an url file in there like so:

WriteINIStr "My App Website.url" "InternetShortcut" "URL" "http://www.path.to.mysite.com"


-Stu

You can find the path to the favorites folder in this reg key:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Favorites


Thanks a lot guys, those both worked great.