Archive: DL-installer


DL-installer
Hello! I'm new to NSIS, and want to create an installer.

The installer should not ask for anything, but just download some files from e.g ftp://moo:cow@ftp.sheep.wool
to a predestined directory if the files are of a newer version than the ones already there. But the thing is, I dont know how to use NSISdl to download it to the installpath. Could anyone help me with this or post some hints?

Thanks in advance,
~~TheJuice


It's quite easy to use, here is an example:
SetOutPath "$INSTDIR\"
NSISdl::download "http://url.of/file.here" "localfile.name"

And you can find the wiki page here.