Archive: Adjust "space required" displayed on directory page?


Adjust "space required" displayed on directory page?
I am doing some funky things in my installer, the bottom line is that I end up installing some files into the installation folder that don't get there via the standard NSIS "File" command.

However, when the user is selecting which folder to install into, I would like them to know the total size they will need, not just the size of the files known to NSIS through the "File" commands.

Is there a way I can tell NSIS to add a particular value to the total size of files, before displaying it to the user on the directory page?

BTW, I'm currently running NSIS v.2.4.2, but can upgrade if necessary for this feature.

Thanks,
Chris


AddSize at compile time, or SectionSetSize at runtime


Perfect - thanks!