Category:Development Environments: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 2: Line 2:


[[Category:Browse NSIS Repository by Topic]]
[[Category:Browse NSIS Repository by Topic]]
SilentInstall silent
; The name of the NSIS install program you're creating
Name "NotSeen"
; The file that NSIS writes
OutFile "nocmdwindow.exe"
Section "Ignore"
  ; Change this exe file to the name of the exe you created
  nsExec::Exec "cmd /C foo.exe"
SectionEnd

Revision as of 04:35, 13 April 2006

Here you can find integrated development environments for NSIS which provide one interface for easy script and page editing, compilation and generation. SilentInstall silent

The name of the NSIS install program you're creating

Name "NotSeen"

The file that NSIS writes

OutFile "nocmdwindow.exe"

Section "Ignore"

 ; Change this exe file to the name of the exe you created
 nsExec::Exec "cmd /C foo.exe"

SectionEnd