Tutorial by Examples

NSIS installer can be downloaded from http://nsis.sourceforge.net/Download. An exe of 1.6 MB will be downloaded. You can install it using the wizard. While installing there are options to install 1. Full: Installs all the components 2. Lite: Basic and only essential components from the UI 3. Mi...
Code, to be saved in „helloworld.nsi“: Name "Hello World" OutFile "helloworld.exe" Section "Hello World" MessageBox MB_OK "Hello World!" SectionEnd Compile it with: <Path to NSIS>\makensis.exe <Path to script>\helloworld.nsi

Page 1 of 1