Skip to content
⌘ NSIS Forum Archive

Add all files of installation

6 posts

vitantonio#

Add all files of installation

Hi
Can I add all files of installation with wizard in one single time?

I have HM NIS Edit 2.0

Thanx
vitantonio#
Hi Joost
With Venis IX I can put a folder and all subdirectory (and all files into subdirectory) an single time.
Can I make this with HM NIS editor?

bye
Joost Verburg#
It looks like that is not supported by HM NIS Edit.

You can submit a feature request at the project page of this editor.
KirillKr#
vitantonio,
you can add file and your script:

SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File "${NSISDIR}\makensis.exe"
You can replace last line on this

SetOutPath "$INSTDIR"
SetOverwrite ifnewer
File /r "${NSISDIR}\*"