paperlined.org
apps > nsis
document updated 15 years ago, on May 23, 2008
1. Embed the .nsi in the installer, so that it can be extracted via 7-zip
   whenever it's needed (so you don't have to keep track of two separate files).
       
       Goto +2
       File "thisfile.nsi"

   OR

       Section /o "-Embed only"        ; files here aren't installed, access them via 7-zip
         File "thisfile.nsi"
       SectionEnd


2.