Archive: NSIS Installer with FTP HELP PLEASE


NSIS Installer with FTP HELP PLEASE
Look I have made an Installer with NSIS :up: but I want
that the Installer download files from an FTP. Could
anybody give me the Code (for NSIS installer) and a
example

THANK YOU VERY MUCH :D


There is no plug-in available that downloads files from FTP, but there is one for HTTP.

Why not create a plug-in yourself or call an external DLL or application?


Or use curl.exe or wget.


I want to Download the files with HTTP.
How can I do that??


You can use the NSISdl plug-in. See Contrib\NSISdl, Examples\waplugin.nsi and search the Archive for NSISdl too for possibly more examples.


Installer Download HTTP
Wich code (With NSIS) do I need to use to download a file (HTTP) with my NSIS installer ??????

PLEASE HELP ME :D


Look for NSISdl in Examples\waplugin.nsi and you'll see the code you need.


"kichick" I allready saw the waplugin.nsi but I still can't find it could you copy and past the complete code

THANK YOU VERY MUCH I REALLY RESPECT YOU "kichik" ***9786;


Did you search for NSISdl?

StrCpy $2 "$TEMP\Winamp Installer.exe"
NSISdl::download http://download.nullsoft.com/winamp/...mp281_lite.exe $2
Pop $0

THANKS YOU ARE THE MAN


You should repair the caps lock key of your keyboard :)


It Still Doesn't Work Helpppp!!!! Please
I have made an download link but it doesn't work. :(
Could you please look at it :)

THANKZ :D

Download the Attached File


Please don't open a new thread for each sequel question you have.

You've pushed the URL twice. Remove the second URL from the script and keep only the first one without the brackets.


Je bent erg grappig Joost Verburg


Oke but can I set an folder destination for the downloaded file


Change "$TEMP\Winamp Installer.exe" to the path where you want the file saved.


And there is I think the last question

I want that the installer downloads 8 files and after
he downloaded each file he must directly open the file

Wich code do I need to use please show me the complete
code


First download the files and then open them in the way you want used Exec or ExecShell.


what is the difference????

and what is the code I need to use??


You can find the syntax in the users manual.

ExecShell executes a document (such as a text file) with the associated viewer, Exec can be used to run an executable application (.exe).


A question

My license data is
LicenseData "C:\license.txt"

but I for example your computer doesn't have C:\license.txt how can I show the license on another computer???


It's the location on the compiler system. It will be included in your installer.


I HAVE finished. Thank you Joost Verburg
and kichik

LOVE YOU GUYS (Iam not gay)


I open exe files with "Exec........." but I can't open
Zip files. Is there a code for opening zip files???


use execshell instead