Archive: Add url after xxx.exe in shorcut


Add url after xxx.exe in shorcut
Hello
I would like add url like this:
http://hardgamerztv.free.fr/videos/emissions.m3u
after this in vlc nsi file
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" \
"$INSTDIR\vlc.exe" "--intf wx --wx-embed"

how I can do this?
thank you
Sorry for my english, i'm form france


After this?
Do you mean create an internet shortcut, or pass the URL as a parameter to the program?

-Stu


Originally posted by Afrow UK
After this?
Do you mean create an internet shortcut, or pass the URL as a parameter to the program?

-Stu
I want pass the URL as a parameter to the program, can I do this

* EDIT: this supposed to be berore the two posts above :-)
WriteIniStr "$INSTDIR\emissions.url" "InternetShortcut" "URL" "http://hardgamerztv.free.fr/videos/emissions.m3u"
CreateShortCut "$SMPROGRAMS\VideoLAN\emissions.lnk" "$INSTDIR\emissions.url"


I want pass the URL as a parameter to the program, can I do this
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" "$INSTDIR\vlc.exe" "--intf wx --wx-embed http://hardgamerztv.free.fr/videos/emissions.m3u"

CF

Quote:


Thank you, i'm trying from this morning, and now it's work

Originally posted by CancerFace
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" "$INSTDIR\vlc.exe" "--intf wx --wx-embed http://hardgamerztv.free.fr/videos/emissions.m3u"

CF