1 | ; $Id: VBoxGuestAdditionsUninstallOld.nsh 84945 2020-06-25 10:22:05Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VBoxGuestAdditionsUninstallOld.nsh - Guest Additions uninstallation handling for legacy packages.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2020 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 |
|
---|
18 | !macro Uninstall_RunExtUnInstaller un
|
---|
19 | Function ${un}Uninstall_RunExtUnInstaller
|
---|
20 |
|
---|
21 | Pop $0
|
---|
22 | Push $1
|
---|
23 | Push $2
|
---|
24 |
|
---|
25 | ; Try to run the current uninstaller
|
---|
26 | StrCpy $1 "$0\uninst.exe"
|
---|
27 | IfFileExists "$1" run 0
|
---|
28 | MessageBox MB_OK "VirtualBox Guest Additions uninstaller not found! Path = $1" /SD IDOK
|
---|
29 | StrCpy $0 1 ; Tell the caller that we were not able to start the uninstaller
|
---|
30 | Goto exit
|
---|
31 |
|
---|
32 | run:
|
---|
33 |
|
---|
34 | ; Always try to run in silent mode
|
---|
35 | Goto run_uninst_silent
|
---|
36 |
|
---|
37 | run_uninst_silent:
|
---|
38 |
|
---|
39 | ExecWait '"$1" /S _?=$0' $2 ; Silently run uninst.exe in it's dir and don't copy it to a temp. location
|
---|
40 | Goto handle_result
|
---|
41 |
|
---|
42 | run_uninst:
|
---|
43 |
|
---|
44 | ExecWait '"$1" _?=$0' $2 ; Run uninst.exe in it's dir and don't copy it to a temp. location
|
---|
45 | Goto handle_result
|
---|
46 |
|
---|
47 | handle_result:
|
---|
48 |
|
---|
49 | ; Note that here a race might going on after the user clicked on
|
---|
50 | ; "Reboot now" in the installer ran above and this installer cleaning
|
---|
51 | ; up afterwards
|
---|
52 |
|
---|
53 | ; ... so try to abort the current reboot / shutdown caused by the installer ran before
|
---|
54 | Call ${un}AbortShutdown
|
---|
55 |
|
---|
56 | ;!ifdef _DEBUG
|
---|
57 | ; MessageBox MB_OK 'Debug Message: Uninstaller was called, result is: $2' /SD IDOK
|
---|
58 | ;!endif
|
---|
59 |
|
---|
60 | ${Switch} $2 ; Check exit codes
|
---|
61 | ${Case} 1 ; Aborted by user
|
---|
62 | StrCpy $0 1 ; Tell the caller that we were aborted by the user
|
---|
63 | ${Break}
|
---|
64 | ${Case} 2 ; Aborted by script (that might be okay)
|
---|
65 | StrCpy $0 0 ; All went well
|
---|
66 | ${Break}
|
---|
67 | ${Default} ; Normal exixt
|
---|
68 | StrCpy $0 0 ; All went well
|
---|
69 | ${Break}
|
---|
70 | ${EndSwitch}
|
---|
71 | Goto exit
|
---|
72 |
|
---|
73 | exit:
|
---|
74 |
|
---|
75 | Pop $2
|
---|
76 | Pop $1
|
---|
77 | Push $0
|
---|
78 |
|
---|
79 | FunctionEnd
|
---|
80 | !macroend
|
---|
81 | !insertmacro Uninstall_RunExtUnInstaller ""
|
---|
82 | !insertmacro Uninstall_RunExtUnInstaller "un."
|
---|
83 |
|
---|
84 | !macro Uninstall_WipeInstallationDirectory un
|
---|
85 | Function ${un}Uninstall_WipeInstallationDirectory
|
---|
86 |
|
---|
87 | Pop $0
|
---|
88 | Push $1
|
---|
89 | Push $2
|
---|
90 |
|
---|
91 | ; Do some basic sanity checks for not screwing up too fatal ...
|
---|
92 | ${LogVerbose} "Removing old installation directory ($0) ..."
|
---|
93 | ${If} $0 != $PROGRAMFILES
|
---|
94 | ${AndIf} $0 != $PROGRAMFILES32
|
---|
95 | ${AndIf} $0 != $PROGRAMFILES64
|
---|
96 | ${AndIf} $0 != $COMMONFILES32
|
---|
97 | ${AndIf} $0 != $COMMONFILES64
|
---|
98 | ${AndIf} $0 != $WINDIR
|
---|
99 | ${AndIf} $0 != $SYSDIR
|
---|
100 | ${LogVerbose} "Wiping ($0) ..."
|
---|
101 | Goto wipe
|
---|
102 | ${EndIf}
|
---|
103 | Goto wipe_abort
|
---|
104 |
|
---|
105 | wipe:
|
---|
106 |
|
---|
107 | RMDir /r /REBOOTOK "$0"
|
---|
108 | StrCpy $0 0 ; All went well
|
---|
109 | Goto exit
|
---|
110 |
|
---|
111 | wipe_abort:
|
---|
112 |
|
---|
113 | ${LogVerbose} "Won't remove directory ($0)!"
|
---|
114 | StrCpy $0 1 ; Signal some failure
|
---|
115 | Goto exit
|
---|
116 |
|
---|
117 | exit:
|
---|
118 |
|
---|
119 | Pop $2
|
---|
120 | Pop $1
|
---|
121 | Push $0
|
---|
122 |
|
---|
123 | FunctionEnd
|
---|
124 | !macroend
|
---|
125 | !insertmacro Uninstall_WipeInstallationDirectory ""
|
---|
126 | !insertmacro Uninstall_WipeInstallationDirectory "un."
|
---|
127 |
|
---|
128 | ; This function cleans up an old Sun installation
|
---|
129 | !macro Uninstall_Sun un
|
---|
130 | Function ${un}Uninstall_Sun
|
---|
131 |
|
---|
132 | Push $0
|
---|
133 | Push $1
|
---|
134 | Push $2
|
---|
135 |
|
---|
136 | ; Get current installation path
|
---|
137 | ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Sun VirtualBox Guest Additions" "UninstallString"
|
---|
138 | StrCmp $0 "" exit
|
---|
139 |
|
---|
140 | ; Extract path
|
---|
141 | Push "$0" ; String
|
---|
142 | Push "\" ; SubString
|
---|
143 | Push "<" ; SearchDirection
|
---|
144 | Push "<" ; StrInclusionDirection
|
---|
145 | Push "0" ; IncludeSubString
|
---|
146 | Push "0" ; Loops
|
---|
147 | Push "0" ; CaseSensitive
|
---|
148 | Call ${un}StrStrAdv
|
---|
149 | Pop $1 ; $1 only contains the full path
|
---|
150 |
|
---|
151 | StrCmp $1 "" exit
|
---|
152 |
|
---|
153 | ; Save current i8042prt info to new uninstall registry path
|
---|
154 | ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Sun VirtualBox Guest Additions" ${ORG_MOUSE_PATH}
|
---|
155 | WriteRegStr HKLM "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH} $0
|
---|
156 |
|
---|
157 | ; Try to wipe current installation directory
|
---|
158 | Push $1 ; Push uninstaller path to stack
|
---|
159 | Call ${un}Uninstall_WipeInstallationDirectory
|
---|
160 | Pop $2 ; Get uninstaller exit code from stack
|
---|
161 | StrCmp $2 0 common exit ; Only process common part if exit code is 0, otherwise exit
|
---|
162 |
|
---|
163 | common:
|
---|
164 |
|
---|
165 | ; Make sure everything is cleaned up in case the old uninstaller did forget something
|
---|
166 | DeleteRegKey HKLM "SOFTWARE\Sun\VirtualBox Guest Additions"
|
---|
167 | DeleteRegKey /ifempty HKLM "SOFTWARE\Sun"
|
---|
168 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Sun VirtualBox Guest Additions"
|
---|
169 | Delete /REBOOTOK "$1\netamd.inf"
|
---|
170 | Delete /REBOOTOK "$1\pcntpci5.cat"
|
---|
171 | Delete /REBOOTOK "$1\PCNTPCI5.sys"
|
---|
172 |
|
---|
173 | ; Try to remove old installation directory if empty
|
---|
174 | RMDir /r /REBOOTOK "$SMPROGRAMS\Sun VirtualBox Guest Additions"
|
---|
175 | RMDir /REBOOTOK "$1"
|
---|
176 |
|
---|
177 | ; Get original mouse driver info and restore it
|
---|
178 | ;ReadRegStr $0 ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH}
|
---|
179 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" $0
|
---|
180 | ;Delete "$SYSDIR\drivers\VBoxMouseNT.sys"
|
---|
181 |
|
---|
182 | ; Delete vendor installation directory (only if completely empty)
|
---|
183 | !if $%KBUILD_TARGET_ARCH% == "x86" ; 32-bit
|
---|
184 | RMDir /REBOOTOK "$PROGRAMFILES32\Sun"
|
---|
185 | !else ; 64-bit
|
---|
186 | RMDir /REBOOTOK "$PROGRAMFILES64\Sun"
|
---|
187 | !endif
|
---|
188 |
|
---|
189 | exit:
|
---|
190 |
|
---|
191 | Pop $2
|
---|
192 | Pop $1
|
---|
193 | Pop $0
|
---|
194 |
|
---|
195 | FunctionEnd
|
---|
196 | !macroend
|
---|
197 | !insertmacro Uninstall_Sun ""
|
---|
198 | !insertmacro Uninstall_Sun "un."
|
---|
199 |
|
---|
200 | ; This function cleans up an old xVM Sun installation
|
---|
201 | !macro Uninstall_SunXVM un
|
---|
202 | Function ${un}Uninstall_SunXVM
|
---|
203 |
|
---|
204 | Push $0
|
---|
205 | Push $1
|
---|
206 | Push $2
|
---|
207 |
|
---|
208 | ; Get current installation path
|
---|
209 | ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Sun xVM VirtualBox Guest Additions" "UninstallString"
|
---|
210 | StrCmp $0 "" exit
|
---|
211 |
|
---|
212 | ; Extract path
|
---|
213 | Push "$0" ; String
|
---|
214 | Push "\" ; SubString
|
---|
215 | Push "<" ; SearchDirection
|
---|
216 | Push "<" ; StrInclusionDirection
|
---|
217 | Push "0" ; IncludeSubString
|
---|
218 | Push "0" ; Loops
|
---|
219 | Push "0" ; CaseSensitive
|
---|
220 | Call ${un}StrStrAdv
|
---|
221 | Pop $1 ; $1 only contains the full path
|
---|
222 |
|
---|
223 | StrCmp $1 "" exit
|
---|
224 |
|
---|
225 | ; Save current i8042prt info to new uninstall registry path
|
---|
226 | ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Sun xVM VirtualBox Guest Additions" ${ORG_MOUSE_PATH}
|
---|
227 | WriteRegStr HKLM "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH} $0
|
---|
228 |
|
---|
229 | ; Try to wipe current installation directory
|
---|
230 | Push $1 ; Push uninstaller path to stack
|
---|
231 | Call ${un}Uninstall_WipeInstallationDirectory
|
---|
232 | Pop $2 ; Get uninstaller exit code from stack
|
---|
233 | StrCmp $2 0 common exit ; Only process common part if exit code is 0, otherwise exit
|
---|
234 |
|
---|
235 | common:
|
---|
236 |
|
---|
237 | ; Make sure everything is cleaned up in case the old uninstaller did forget something
|
---|
238 | DeleteRegKey HKLM "SOFTWARE\Sun\xVM VirtualBox Guest Additions"
|
---|
239 | DeleteRegKey /ifempty HKLM "SOFTWARE\Sun"
|
---|
240 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Sun xVM VirtualBox Guest Additions"
|
---|
241 | Delete /REBOOTOK "$1\netamd.inf"
|
---|
242 | Delete /REBOOTOK "$1\pcntpci5.cat"
|
---|
243 | Delete /REBOOTOK "$1\PCNTPCI5.sys"
|
---|
244 |
|
---|
245 | ; Try to remove old installation directory if empty
|
---|
246 | RMDir /r /REBOOTOK "$SMPROGRAMS\Sun xVM VirtualBox Guest Additions"
|
---|
247 | RMDir /REBOOTOK "$1"
|
---|
248 |
|
---|
249 | ; Delete vendor installation directory (only if completely empty)
|
---|
250 | !if $%KBUILD_TARGET_ARCH% == "x86" ; 32-bit
|
---|
251 | RMDir /REBOOTOK "$PROGRAMFILES32\Sun"
|
---|
252 | !else ; 64-bit
|
---|
253 | RMDir /REBOOTOK "$PROGRAMFILES64\Sun"
|
---|
254 | !endif
|
---|
255 |
|
---|
256 | ; Get original mouse driver info and restore it
|
---|
257 | ;ReadRegStr $0 ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH}
|
---|
258 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" $0
|
---|
259 | ;Delete "$SYSDIR\drivers\VBoxMouseNT.sys"
|
---|
260 |
|
---|
261 | exit:
|
---|
262 |
|
---|
263 | Pop $2
|
---|
264 | Pop $1
|
---|
265 | Pop $0
|
---|
266 |
|
---|
267 | FunctionEnd
|
---|
268 | !macroend
|
---|
269 | !insertmacro Uninstall_SunXVM ""
|
---|
270 | !insertmacro Uninstall_SunXVM "un."
|
---|
271 |
|
---|
272 | ; This function cleans up an old innotek installation
|
---|
273 | !macro Uninstall_Innotek un
|
---|
274 | Function ${un}Uninstall_Innotek
|
---|
275 |
|
---|
276 | Push $0
|
---|
277 | Push $1
|
---|
278 | Push $2
|
---|
279 |
|
---|
280 | ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\innotek VirtualBox Guest Additions" "UninstallString"
|
---|
281 | StrCmp $0 "" exit
|
---|
282 |
|
---|
283 | ; Extract path
|
---|
284 | Push "$0" ; String
|
---|
285 | Push "\" ; SubString
|
---|
286 | Push "<" ; SearchDirection
|
---|
287 | Push "<" ; StrInclusionDirection
|
---|
288 | Push "0" ; IncludeSubString
|
---|
289 | Push "0" ; Loops
|
---|
290 | Push "0" ; CaseSensitive
|
---|
291 | Call ${un}StrStrAdv
|
---|
292 | Pop $1 ; $1 only contains the full path
|
---|
293 |
|
---|
294 | StrCmp $1 "" exit
|
---|
295 |
|
---|
296 | ; Save current i8042prt info to new uninstall registry path
|
---|
297 | ReadRegStr $0 HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\innotek VirtualBox Guest Additions" ${ORG_MOUSE_PATH}
|
---|
298 | WriteRegStr HKLM "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH} $0
|
---|
299 |
|
---|
300 | ; Try to wipe current installation directory
|
---|
301 | Push $1 ; Push uninstaller path to stack
|
---|
302 | Call ${un}Uninstall_WipeInstallationDirectory
|
---|
303 | Pop $2 ; Get uninstaller exit code from stack
|
---|
304 | StrCmp $2 0 common exit ; Only process common part if exit code is 0, otherwise exit
|
---|
305 |
|
---|
306 | common:
|
---|
307 |
|
---|
308 | ; Remove left over files which were not entirely cached by the formerly running
|
---|
309 | ; uninstaller
|
---|
310 | DeleteRegKey HKLM "SOFTWARE\innotek\VirtualBox Guest Additions"
|
---|
311 | DeleteRegKey HKLM "SOFTWARE\innotek"
|
---|
312 | DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\innotek VirtualBox Guest Additions"
|
---|
313 | Delete /REBOOTOK "$1\VBoxGuestDrvInst.exe"
|
---|
314 | Delete /REBOOTOK "$1\VBoxMouseInst.exe"
|
---|
315 | Delete /REBOOTOK "$1\VBoxSFDrvInst.exe"
|
---|
316 | Delete /REBOOTOK "$1\RegCleanup.exe"
|
---|
317 | Delete /REBOOTOK "$1\VBoxService.exe"
|
---|
318 | Delete /REBOOTOK "$1\VBoxMouseInst.exe"
|
---|
319 | Delete /REBOOTOK "$1\innotek VirtualBox Guest Additions.url"
|
---|
320 | Delete /REBOOTOK "$1\uninst.exe"
|
---|
321 | Delete /REBOOTOK "$1\iexplore.ico"
|
---|
322 | Delete /REBOOTOK "$1\install.log"
|
---|
323 | Delete /REBOOTOK "$1\VBCoInst.dll"
|
---|
324 | Delete /REBOOTOK "$1\VBoxControl.exe"
|
---|
325 | Delete /REBOOTOK "$1\VBoxDisp.dll"
|
---|
326 | Delete /REBOOTOK "$1\VBoxGINA.dll"
|
---|
327 | Delete /REBOOTOK "$1\VBoxGuest.cat"
|
---|
328 | Delete /REBOOTOK "$1\VBoxGuest.inf"
|
---|
329 | Delete /REBOOTOK "$1\VBoxGuest.sys"
|
---|
330 | Delete /REBOOTOK "$1\VBoxMouse.inf"
|
---|
331 | Delete /REBOOTOK "$1\VBoxMouse.sys"
|
---|
332 | Delete /REBOOTOK "$1\VBoxVideo.cat"
|
---|
333 | Delete /REBOOTOK "$1\VBoxVideo.inf"
|
---|
334 | Delete /REBOOTOK "$1\VBoxVideo.sys"
|
---|
335 |
|
---|
336 | ; Try to remove old installation directory if empty
|
---|
337 | RMDir /r /REBOOTOK "$SMPROGRAMS\innotek VirtualBox Guest Additions"
|
---|
338 | RMDir /REBOOTOK "$1"
|
---|
339 |
|
---|
340 | ; Delete vendor installation directory (only if completely empty)
|
---|
341 | !if $%KBUILD_TARGET_ARCH% == "x86" ; 32-bit
|
---|
342 | RMDir /REBOOTOK "$PROGRAMFILES32\innotek"
|
---|
343 | !else ; 64-bit
|
---|
344 | RMDir /REBOOTOK "$PROGRAMFILES64\innotek"
|
---|
345 | !endif
|
---|
346 |
|
---|
347 | ; Get original mouse driver info and restore it
|
---|
348 | ;ReadRegStr $0 ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH}
|
---|
349 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" $0
|
---|
350 | ;Delete "$SYSDIR\drivers\VBoxMouseNT.sys"
|
---|
351 |
|
---|
352 | exit:
|
---|
353 |
|
---|
354 | Pop $2
|
---|
355 | Pop $1
|
---|
356 | Pop $0
|
---|
357 |
|
---|
358 | FunctionEnd
|
---|
359 | !macroend
|
---|
360 | !insertmacro Uninstall_Innotek ""
|
---|
361 | !insertmacro Uninstall_Innotek "un."
|
---|