theInstaller
8th March 2006 15:08 UTC
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
kichik
8th March 2006 15:12 UTC
You can use CopyFiles to copy files. For example:
CopyFiles \\server\directory\sourcefilename.exe $INSTDIR
theInstaller
8th March 2006 16:18 UTC
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