Search code examples
nsis

NSIS script to copy files silently without any GUI?


My Nsis script is copying files from one location to other on target machine. Its showing a box like copying files c:\programfiles.... to c:\programfiles.... . I dont want the end user to see this box. How can I remove it?


Solution

  • CopyFiles /SILENT "c:\foo" "d:\bar"