-
Notifications
You must be signed in to change notification settings - Fork 0
/
py_aduc_upload_setup.nsi
61 lines (40 loc) · 1.33 KB
/
py_aduc_upload_setup.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
;--------------------------------
;General information
!include "MUI2.nsh"
!define MUI_ICON "octopus.ico"
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_BITMAP "octopus.bmp"
!define MUI_HEADERIMAGE_RIGHT
Unicode true
;The name of the installer
Name "Py ADuC Uploader"
;The output file path of the installer to be created
OutFile "dist\py_aduc_upload_setup.exe"
;The default installation directory
InstallDir "$PROGRAMFILES64\py_aduc_upload"
;Request application privileges for user level privileges
RequestExecutionLevel admin
;--------------------------------
;Installer pages
;Show a page where the user can customize the install directory
Page directory
;Show a page where the progress of the install is listed
Page instfiles
;--------------------------------
;Installer Components
;A section for each component that should be installed
Section "Octopus"
;Set output path to the installation directory
SetOutPath $INSTDIR
;Now you can list files that should be extracted to this output path or create
;directories:
File /r "dist\Octopus\*"
SectionEnd
;A section for each component that should be installed
Section "Uploader"
;Set output path to the installation directory
SetOutPath $INSTDIR
;Now you can list files that should be extracted to this output path or create
;directories:
File /r "dist\Uploader\*"
SectionEnd