forked from cidles/poio-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoiograid.nsi
97 lines (69 loc) · 2.69 KB
/
poiograid.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
; example2.nsi
;
; This script is based on example1.nsi, but it remember the directory,
; has uninstall support and (optionally) installs start menu shortcuts.
;
; It will install example2.nsi into a directory that the user selects,
;--------------------------------
; The name of the installer
Name "PoioGRAID"
; The file to write
OutFile "setup-poiograid.exe"
; The default installation directory
InstallDir $PROGRAMFILES\Poio\PoioGRAID
; Registry key to check for directory (so if you install again, it will
; overwrite the old one automatically)
InstallDirRegKey HKLM "Software\CIDLeS_PoioGRAID" "Install_Dir"
;--------------------------------
; Pages
Page components
Page directory
Page instfiles
UninstPage uninstConfirm
UninstPage instfiles
;--------------------------------
; The stuff to install
Section "Poio GRAID (required)"
SectionIn RO
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File /r "dist_win\*"
; Write the installation path into the registry
WriteRegStr HKLM SOFTWARE\CIDLeS_PoioGRAID "Install_Dir" "$INSTDIR"
; Write the uninstall keys for Windows
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PoioGRAID" "DisplayName" "Poio GRAID"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PoioGRAID" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PoioGRAID" "NoModify" 1
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PoioGRAID" "NoRepair" 1
WriteUninstaller "uninstall.exe"
SectionEnd
; Optional section (can be disabled by the user)
Section "Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\Poio GRAID"
CreateShortCut "$SMPROGRAMS\Poio GRAID\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
CreateShortCut "$SMPROGRAMS\Poio GRAID\Poio GRAID.lnk" "$INSTDIR\bin\PoioGRAID.exe" "" "$INSTDIR\bin\PoioGRAID.exe" 0
SectionEnd
;--------------------------------
; Uninstaller
Section "Uninstall"
; Remove registry keys
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\PoioGRAID"
DeleteRegKey HKLM SOFTWARE\CIDLeS_PoioGRAID
; Remove files and uninstaller
Delete $INSTDIR\bin\*.*
Delete $INSTDIR\data\translations\*.*
Delete $INSTDIR\data\*.*
Delete $INSTDIR\*.*
;Delete $INSTDIR\uninstall.exe
; Remove shortcuts, if any
Delete "$SMPROGRAMS\Poio GRAID\Uninstall.lnk"
Delete "$SMPROGRAMS\Poio GRAID\Poio GRAID.lnk"
Delete "$SMPROGRAMS\Poio GRAID\*.*"
; Remove directories used
RMDir "$SMPROGRAMS\PoioGRAID"
RMDir "$INSTDIR\bin"
RMDir "$INSTDIR\data\translations"
RMDir "$INSTDIR\data"
RMDir "$INSTDIR"
SectionEnd