Archive: get files from a LAN Server


get files from a LAN Server
Hi guys,
how can i download/get files from a localareanetwork server?
I like to get the installation files from the server.
e.g.

get \\server\directory\sourcefilename.exe to localDirecotry


How can i realize that with NSIS. I haven't found anything.

Thank you for help


You can use CopyFiles to copy files. For example:

CopyFiles \\server\directory\sourcefilename.exe $INSTDIR

wow perfect, it works. I don't understand why i didn't found this command*arghh

many thanks for your fast answer :-D


Do you have any command to establish at first a connection to the server (source directory) with user and password for the directory? (the server is a Windows machine)

That's all i need... thank you