forked from Tobbe/losi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SectionCore.nsh
236 lines (190 loc) · 6.38 KB
/
SectionCore.nsh
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
!ifndef SECTION_CORE
!define SECTION_CORE
!include GetInQuotes.nsh
!include IndexOf.nsh
!include GetExecutablePath.nsh
!include BackupPersonal.nsh
!include Shell9x.nsh
!include ShellNT.nsh
!include WinVer.nsh
!include SectionsInclude.nsh
!include EnumLoginUsers.nsh
Section "$(NAME_SecCore)" SecCore
${If} ${FileExists} "$INSTDIR\litestep.exe"
Push "$INSTDIR"
Call KillLS
Pop $R9
${EndIf}
${ArrayErrorStyle} MsgBox
SetOutPath "$SYSDIR"
SetOverwrite off
File ".\msvcp60.dll"
File ".\msvcrt.dll"
File ".\msvcp70.dll"
File ".\msvcp71.dll"
File ".\msvcr71.dll"
File ".\msvcr70.dll"
SetOverwrite on
SetOutPath "$INSTDIR"
${EnumLoginUsersArray->Init}
ReadINIStr $0 "$PLUGINSDIR\ioHowLS.ini" "Field 2" "State" ;Field 2 is All Users
${If} $0 == 1
; Installing for all users
${EnumLoginUsers}
${Else}
UserInfo::GetName
Pop $username
${EnumLoginUsersArray->Shift} "$username"
${EndIf}
Push $0
Push $1
Push $2
Push $3
Push $4
Push $5
Push $6
${whereprofilesarray->Clear}
ReadINIStr $0 "$PLUGINSDIR\ioWhereProfiles.ini" "Field 4" "State" ;Field 4 is Documents and Settings
ReadINIStr $1 "$PLUGINSDIR\ioWhereProfiles.ini" "Field 3" "State" ;Field 3 is LSDir\Profiles
${If} $0 == 1
; Install to Documents and Settings
${RIndexOf} $2 $PROFILE '\'
StrCpy $2 $PROFILE -$2
${RIndexOf} $3 $APPDATA '\'
StrCpy $3 $APPDATA "" -$3
${EnumLoginUsersArray->SizeOf} $4 $4 $4 ; Only the last is needed
IntOp $4 $4 - 1
${For} $5 0 $4 ; $5 from 0 to size-1
${EnumLoginUsersArray->Read} $6 $5
; Will append something like
; C:\Documents and Settings\<username>\Application Data\LiteStep
; on to the array
${whereprofilesarray->Shift} "$2\$6$3\LiteStep"
${Next}
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File ".\LS\step-das\step.rc" ;das = Documents and Settings :p
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
${ElseIf} $1 == 1
; Install to LSDir\Profiles
UserInfo::GetName
Pop $username
${If} $username == ""
; If we get here it means no username was found, probably due
; to installing on 9x when not logged in
MessageBox MB_OK $(MB_NO_USER)
; Don't install any profiles
StrCpy $0 0
StrCpy $1 0
${EndIf}
${EnumLoginUsersArray->SizeOf} $2 $2 $2
IntOp $2 $2 - 1
${For} $3 0 $2 ; $3 from 0 to size-1
${EnumLoginUsersArray->Read} $4 $3
; Will append something like
; C:\Program Files\LOSI\Profiles\<username> on to the array
${whereprofilesarray->Shift} "$INSTDIR\Profiles\$4"
${Next}
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File ".\LS\step-lsdir\step.rc"
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
${EndIf}
${If} $0 == 0
${AndIf} $1 == 0
; Don't install any profiles
${whereprofilesarray->Shift} "$INSTDIR"
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File ".\LS\step-none\step.rc"
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
${EndIf}
Pop $6
Pop $5
Pop $4
Pop $3
Pop $2
Pop $1
Pop $0
;; Store a few paths in the registry
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "LitestepDir" $INSTDIR
${whereprofilesarray->Read} $0 0
${If} $0 == "$INSTDIR\Profiles\$username"
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "ProfilesDir" "$INSTDIR\Profiles\%USERNAME%"
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "PersonalDir" "$INSTDIR\Profiles\%USERNAME%\personal"
${ElseIf} $0 == "$APPDATA\LiteStep"
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "ProfilesDir" "%APPDATA%\LiteStep"
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "PersonalDir" "%APPDATA%\LiteStep\personal"
${Else}
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "ProfilesDir" "$0"
WriteRegStr HKLM "Software\${PRODUCT_NAME}\Installer" "PersonalDir" "$0\personal"
${EndIf}
SetOutPath "$INSTDIR"
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File ".\LS\changes.txt"
File ".\LS\hook.dll"
File ".\LS\libpng13.dll"
File ".\LS\license.txt"
File ".\LS\litestep.exe"
File ".\LS\lsapi.dll"
File ".\LS\readme.txt"
File ".\LS\manual.txt"
File ".\LS\zlib1.dll"
File ".\LS\xPaintClass-1.0.dll"
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
SetOutPath "$INSTDIR\NLM"
SetOverwrite on
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File ".\LS\NLM\*"
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
; Get the current shell
ReadIniStr $0 "system.ini" "boot" "shell"
; Strip the path, so we keep only the .exe name
${ExePath} $0 $0
${RIndexOf} $R0 $0 '\' ; Macro expands to 4 lines
${If} $R0 == -1
StrCpy $currentShell $0
${Else}
StrLen $R1 $0
IntOp $R0 $R1 - $R0
IntOp $R0 $R0 + 1
StrCpy $currentShell $0 "" $R0
${EndIf}
${If} $currentShell == ""
ReadRegStr $currentShell HKLM "Software\Microsoft\Windows NT\CurrentVersion\Winlogon" "Shell"
${EndIf}
${If} $currentShell == ""
StrCpy $currentShell "explorer.exe"
${EndIf}
ReadINIStr $R0 "$PLUGINSDIR\ioHowLS.ini" "Field 4" "State" ;Field 4 is Don't set shell
${If} $R0 != 1
; Check whether we're installing on a 9x or NT based system
${IfNot} ${IsNT}
Call setShell9x
${Else}
Call setShellNT
${EndIf}
${EndIf}
Pop $0
CreateShortCut "$DESKTOP\Set Explorer as Shell.lnk" '"$INSTDIR\utilities\wxlua.exe"' '"$INSTDIR\utilities\LOSS.lua" explorer' "$INSTDIR\losi\SetShellExplorer.ico"
CreateShortCut "$DESKTOP\Set LiteStep as Shell.lnk" '"$INSTDIR\utilities\wxlua.exe"' '"$INSTDIR\utilities\LOSS.lua" litestep' "$INSTDIR\losi\SetShellLS.ico"
SetOverwrite on
; Install all the modules and their docs
SetOutPath "$INSTDIR\modules\"
!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File /r /x ".svn" ".\LS\modules\*"
!insertmacro UNINSTALL.LOG_CLOSE_INSTALL
call backupPersonal
; Install the personal files
${whereprofilesarray->SizeOf} $1 $2 $0
IntOp $0 $0 - 1
${For} $1 0 $0 ; $1 from 0 to size-1
${whereprofilesarray->Read} $2 $1
SetOutPath "$2\personal"
; Don't log these files, they are removed the traditional way
;!insertmacro UNINSTALL.LOG_OPEN_INSTALL
File /r /x ".svn" ".\Personal\personal\*"
${Next}
${If} $R9 == "LSKilled"
ExecShell open "$INSTDIR\litestep.exe" ;Launch LiteStep
StrCpy $hasStartedLS "true"
${EndIf}
SectionEnd
!endif