summaryrefslogtreecommitdiff
path: root/Examples/example1.nsi
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/example1.nsi')
-rwxr-xr-xExamples/example1.nsi77
1 files changed, 40 insertions, 37 deletions
diff --git a/Examples/example1.nsi b/Examples/example1.nsi
index 61a6f3e..004a14f 100755
--- a/Examples/example1.nsi
+++ b/Examples/example1.nsi
@@ -1,37 +1,40 @@
-; example1.nsi
-;
-; This script is perhaps one of the simplest NSIs you can make. All of the
-; optional settings are left to their default settings. The installer simply
-; prompts the user asking them where to install, and drops a copy of example1.nsi
-; there.
-
-;--------------------------------
-
-; The name of the installer
-Name "Example1"
-
-; The file to write
-OutFile "example1.exe"
-
-; The default installation directory
-InstallDir $PROGRAMFILES\Example1
-
-;--------------------------------
-
-; Pages
-
-Page directory
-Page instfiles
-
-;--------------------------------
-
-; The stuff to install
-Section "" ;No components page, name is not important
-
- ; Set output path to the installation directory.
- SetOutPath $INSTDIR
-
- ; Put file there
- File example1.nsi
-
-SectionEnd ; end the section
+; example1.nsi
+;
+; This script is perhaps one of the simplest NSIs you can make. All of the
+; optional settings are left to their default settings. The installer simply
+; prompts the user asking them where to install, and drops a copy of example1.nsi
+; there.
+
+;--------------------------------
+
+; The name of the installer
+Name "Example1"
+
+; The file to write
+OutFile "example1.exe"
+
+; The default installation directory
+InstallDir $DESKTOP\Example1
+
+; Request application privileges for Windows Vista
+RequestExecutionLevel user
+
+;--------------------------------
+
+; Pages
+
+Page directory
+Page instfiles
+
+;--------------------------------
+
+; The stuff to install
+Section "" ;No components page, name is not important
+
+ ; Set output path to the installation directory.
+ SetOutPath $INSTDIR
+
+ ; Put file there
+ File example1.nsi
+
+SectionEnd ; end the section