Hello World in Nullsoft Software Install Script (NSIS)

posted on 2009-09-15 16:48:34+08:00 by david
NSIS
  1. ; Hello World in Nullsoft Software Install Script (NSIS)
  2.  
  3. Caption "Hello World!"
  4. OutFile ".\HelloWorld.exe"
  5. SilentInstall silent
  6.  
  7. Section ""
  8. MessageBox MB_OK "Hello World!"
  9. SectionEnd

All Code Snippets

Hot Code Snippets

New Code Snippets