Skip to content
⌘ NSIS Forum Archive

compilation failing due to large temporary files

6 posts

Erpo#

compilation failing due to large temporary files

Hello.

I'm trying to create an installer that is larger than the amount of space I have free on my C drive. I can't compile my script because it fills it up with temporary files and then fails.

Is there any way I can get MakeNSIS to use a directory on another drive for temporary files?


[Edit: Corrected a typo.]
RobGrant#
Dunno...what if you tried putting


InitPluginsDir
StrCpy $PLUGINSDIR "D:\temp"
...or whatever or your .oninit Function?
Erpo#
problem solved

Set your temporary directory to another drive with more free space.

That worked perfectly. Thanks kichik.