PDA

View Full Version : install files into two different directories


toombi
31st May 2005, 02:36
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
31st May 2005, 07:15
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