Skip to content
⌘ NSIS Forum Archive

install files into two different directories

2 posts

Guest#

install files into two different directories

Hi everyone,

I am newbie to NSIS. Here is my problem -

I want to install files into two different directories.

I am using Modern UI for development.


thanx in advance,
Gaurav
Brummelchen#
SetOutPath <outpath>

Sets the output path ($OUTDIR) and creates it (recursively
if necessary), if it does not exist. Must be a full pathname,
usually is just $INSTDIR (you can specify $INSTDIR if you
are lazy with a single "-").

SetOutPath $INSTDIR
File program.exe

SetOutPath <a-dir>
file a.ext

SetOutPath <b-dir>
file b.ext