Skip to content
⌘ NSIS Forum Archive

To execute URL on internet Explorer through NSIS.

3 posts

paragrane#

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?
Red Wine#
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