-
Notifications
You must be signed in to change notification settings - Fork 0
/
spreader3.nsi
135 lines (92 loc) · 3.63 KB
/
spreader3.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
;NSIS Modern User Interface
;Basic Example Script
;Written by Joost Verburg
;--------------------------------
;Include Modern UI
!include "MUI2.nsh"
;--------------------------------
;General
;Name and file
Name "Spreader"
OutFile "spreader-0.9.7-win32-installer.exe"
;Default installation folder
InstallDir "$PROGRAMFILES\Spreader"
;Get installation folder from registry if available
InstallDirRegKey HKCU "Software\Spreader" ""
;Request application privileges for Windows Vista
RequestExecutionLevel admin
;======================================================
; Defines
!define srcdir "./spreader-0.9.7-win32"
!define productname "Spreader"
!define regkey "Software\${productname}"
!define exec "spreader.exe"
!define uninstexec "Uninstall Spreader.exe"
!define uninstkey "Software\Microsoft\Windows\CurrentVersion\Uninstall\${productname}"
;--------------------------------
;Variables
Var StartMenuFolder
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;--------------------------------
;Pages
!insertmacro MUI_PAGE_WELCOME
!insertmacro MUI_PAGE_LICENSE "${srcdir}\license.txt"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
!define MUI_STARTMENUPAGE_REGISTRY_KEY "${regkey}"
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
!insertmacro MUI_PAGE_STARTMENU Application $StartMenuFolder
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_PAGE_FINISH
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;Installer Sections
Section "Spreader Core" SecDummy
SetOutPath "$INSTDIR"
;ADD YOUR OWN FILES HERE...
!include "files.nsi"
File /a "${srcdir}\${exec}"
;Store installation folder
WriteRegStr HKCU "${regkey}" "Install_Dir" "$INSTDIR"
; write uninstall strings
WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${productname}" "DisplayName" "${productname} (remove only)"
WriteRegStr HKCU "Software\Microsoft\Windows\CurrentVersion\Uninstall\${productname}" "UninstallString" '"$INSTDIR\${uninstexec}"'
;Create uninstaller
WriteUninstaller "$INSTDIR\${uninstexec}"
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
CreateDirectory "$SMPROGRAMS\$StartMenuFolder"
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\${productname}.lnk" "$INSTDIR\${exec}"
CreateShortCut "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk" "$INSTDIR\${uninstexec}"
!insertmacro MUI_STARTMENU_WRITE_END
SectionEnd
;--------------------------------
;Descriptions
;Language strings
LangString DESC_SecDummy ${LANG_ENGLISH} "Install main Spreader files"
;Assign language strings to sections
!insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN
!insertmacro MUI_DESCRIPTION_TEXT ${SecDummy} $(DESC_SecDummy)
!insertmacro MUI_FUNCTION_DESCRIPTION_END
;--------------------------------
;Uninstaller Section
Section "Uninstall"
;ADD YOUR OWN FILES HERE...
!include unfiles.nsi
Delete "$INSTDIR\${exec}"
!insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuFolder
Delete "$SMPROGRAMS\$StartMenuFolder\${productname}.lnk"
Delete "$SMPROGRAMS\$StartMenuFolder\Uninstall.lnk"
RMDir "$SMPROGRAMS\$StartMenuFolder"
Delete "$INSTDIR\${uninstexec}"
RMDir "$INSTDIR"
DeleteRegKey HKCU "${uninstkey}"
DeleteRegKey HKCU "${regkey}"
SectionEnd