Archive: To execute URL on internet Explorer through NSIS.


To execute URL on internet Explorer through NSIS.
Hi!!!!!!!!!!!!!

How to execute URL like "http://somepath" on IE or Mozilla browser through NSIS Script. Please can any one tell me how to do this?


outfile 'test.exe'

section -
InitPluginsDir
WriteIniStr "$PLUGINSDIR\tmp.url" "InternetShortcut" "URL" "http://nsis.sf.net"
execshell open "$PLUGINSDIR\tmp.url"
sectionend

or
outfile 'test.exe'

section -
execshell open "http://nsis.sf.net"
sectionend

Thanks Very much.