Skip to content
⌘ NSIS Forum Archive

NSIS Installer with FTP HELP PLEASE

25 posts

VegetaSan#

NSIS Installer with FTP HELP PLEASE

Look I have made an Installer with NSIS 👍 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 😁
Joost Verburg#
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?
kichik#
You can use the NSISdl plug-in. See Contrib\NSISdl, Examples\waplugin.nsi and search the Archive for NSISdl too for possibly more examples.
VegetaSan#
Installer Download HTTP

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

PLEASE HELP ME 😁
VegetaSan#
"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" ☺
kichik#
Did you search for NSISdl?
StrCpy $2 "$TEMP\Winamp Installer.exe"
NSISdl::download http://download.nullsoft.com/winamp/...mp281_lite.exe $2
Pop $0
VegetaSan#
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 😁

Download the Attached File
kichik#
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.
VegetaSan#
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
Joost Verburg#
First download the files and then open them in the way you want used Exec or ExecShell.
Joost Verburg#
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).
VegetaSan#
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???
VegetaSan#
I open exe files with "Exec........." but I can't open
Zip files. Is there a code for opening zip files???