Skip to content
⌘ NSIS Forum Archive

QUERY: *.* minus files options?

2 posts

dhruba.bandopad#

QUERY: *.* minus files options?

I am using the NSIS\Examples\example1.nsi script and changed the

---SOF---
; The stuff to install
Section "Cool Program"

; Set output path to the installation directory.
SetOutPath $INSTDIR

; Put file there
File /a /r "E:\Cool Program\*.*"

SectionEnd
---EOF---


I was wondering if it was possible to do a minus files list? I don't really want to write out all the files manually, but I do know the list of small files that I do not want to include (developer files, notes, etc).

Is this possible to do?