VirtualBox

source: vbox/trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsW2KXP.nsh@ 32212

Last change on this file since 32212 was 31634, checked in by vboxsync, 15 years ago

Windows Additions: export shared folders and installer to OSE

  • Property svn:eol-style set to native
File size: 20.0 KB
Line 
1
2Function W2K_SetVideoResolution
3
4 ; NSIS only supports global vars, even in functions -- great
5 Var /GLOBAL i
6 Var /GLOBAL tmp
7 Var /GLOBAL tmppath
8 Var /GLOBAL win_ver
9 Var /GLOBAL dev_id
10 Var /GLOBAL dev_desc
11
12 ; Check for all required parameters
13 StrCmp $g_iScreenX "0" exit
14 StrCmp $g_iScreenY "0" exit
15 StrCmp $g_iScreenBpp "0" exit
16
17 Call GetWindowsVersion
18 Pop $win_ver ; Now contains Windows version
19
20 DetailPrint "Setting display parameters ($g_iScreenXx$g_iScreenY, $g_iScreenBpp BPP) ..."
21
22 ; Enumerate all video devices (up to 32 at the moment, use key "MaxObjectNumber" key later)
23 ${For} $i 0 32
24
25 ReadRegStr $tmp HKLM "HARDWARE\DEVICEMAP\VIDEO" "\Device\Video$i"
26 StrCmp $tmp "" dev_not_found
27
28 ; Extract path to video settings
29 ; Ex: \Registry\Machine\System\CurrentControlSet\Control\Video\{28B74D2B-F0A9-48E0-8028-D76F6BB1AE65}\0000
30 ; Or: \Registry\Machine\System\CurrentControlSet\Control\Video\vboxvideo\Device0
31 ; Result: Machine\System\CurrentControlSet\Control\Video\{28B74D2B-F0A9-48E0-8028-D76F6BB1AE65}\0000
32 Push "$tmp" ; String
33 Push "\" ; SubString
34 Push ">" ; SearchDirection
35 Push ">" ; StrInclusionDirection
36 Push "0" ; IncludeSubString
37 Push "2" ; Loops
38 Push "0" ; CaseSensitive
39 Call StrStrAdv
40 Pop $tmppath ; $1 only contains the full path
41 StrCmp $tmppath "" dev_not_found
42
43 ; Get device description
44 ReadRegStr $dev_desc HKLM "$tmppath" "Device Description"
45!ifdef _DEBUG
46 DetailPrint "Registry path: $tmppath"
47 DetailPrint "Registry path to device name: $temp"
48!endif
49 DetailPrint "Detected video device: $dev_desc"
50
51 ${If} $dev_desc == "VirtualBox Graphics Adapter"
52 DetailPrint "VirtualBox video device found!"
53 Goto dev_found
54 ${EndIf}
55 ${Next}
56 Goto dev_not_found
57
58dev_found:
59
60 ; If we're on Windows 2000, skip the ID detection ...
61 StrCmp $win_ver "2000" change_res
62 Goto dev_found_detect_id
63
64dev_found_detect_id:
65
66 StrCpy $i 0 ; Start at index 0
67 DetailPrint "Detecting device ID ..."
68
69dev_found_detect_id_loop:
70
71 ; Resolve real path to hardware instance "{GUID}"
72 EnumRegKey $dev_id HKLM "SYSTEM\CurrentControlSet\Control\Video" $i
73 StrCmp $dev_id "" dev_not_found ; No more entries? Jump out
74!ifdef _DEBUG
75 DetailPrint "Got device ID: $dev_id"
76!endif
77 ReadRegStr $dev_desc HKLM "SYSTEM\CurrentControlSet\Control\Video\$dev_id\0000" "Device Description" ; Try to read device name
78 ${If} $dev_desc == "VirtualBox Graphics Adapter"
79 DetailPrint "Device ID of $dev_desc: $dev_id"
80 Goto change_res
81 ${EndIf}
82
83 IntOp $i $i + 1 ; Increment index
84 goto dev_found_detect_id_loop
85
86dev_not_found:
87
88 DetailPrint "No VirtualBox video device (yet) detected! No custom mode set."
89 Goto exit
90
91change_res:
92
93!ifdef _DEBUG
94 DetailPrint "Device description: $dev_desc"
95 DetailPrint "Device ID: $dev_id"
96!endif
97
98 Var /GLOBAL reg_path_device
99 Var /GLOBAL reg_path_monitor
100
101 DetailPrint "Custom mode set: Platform is '$win_ver'."
102 ${If} $win_ver == "2000"
103 ${OrIf} $win_ver == "Vista"
104 StrCpy $reg_path_device "SYSTEM\CurrentControlSet\SERVICES\VBoxVideo\Device0"
105 StrCpy $reg_path_monitor "SYSTEM\CurrentControlSet\SERVICES\VBoxVideo\Device0\Mon00000001"
106 ${ElseIf} $win_ver == "XP"
107 ${OrIf} $win_ver == "7"
108 StrCpy $reg_path_device "SYSTEM\CurrentControlSet\Control\Video\$dev_id\0000"
109 StrCpy $reg_path_monitor "SYSTEM\CurrentControlSet\Control\VIDEO\$dev_id\0000\Mon00000001"
110 ${Else}
111 DetailPrint "Custom mode set: Platform '$win_ver' not supported yet."
112 Goto exit
113 ${EndIf}
114
115 ; Write the new value in the adapter config (VBoxVideo.sys) using hex values in binary format
116 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /registry write HKLM $reg_path_device CustomXRes REG_BIN $g_iScreenX DWORD'
117 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /registry write HKLM $reg_path_device CustomYRes REG_BIN $g_iScreenY DWORD'
118 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /registry write HKLM $reg_path_device CustomBPP REG_BIN $g_iScreenBpp DWORD'
119
120 ; ... and tell Windows to use that mode on next start!
121 WriteRegDWORD HKCC $reg_path_device "DefaultSettings.XResolution" "$g_iScreenX"
122 WriteRegDWORD HKCC $reg_path_device "DefaultSettings.YResolution" "$g_iScreenY"
123 WriteRegDWORD HKCC $reg_path_device "DefaultSettings.BitsPerPixel" "$g_iScreenBpp"
124
125 WriteRegDWORD HKCC $reg_path_monitor "DefaultSettings.XResolution" "$g_iScreenX"
126 WriteRegDWORD HKCC $reg_path_monitor "DefaultSettings.YResolution" "$g_iScreenY"
127 WriteRegDWORD HKCC $reg_path_monitor "DefaultSettings.BitsPerPixel" "$g_iScreenBpp"
128
129 DetailPrint "Custom mode set to $g_iScreenXx$g_iScreenY, $g_iScreenBpp BPP on next restart."
130
131exit:
132
133FunctionEnd
134
135Function W2K_Prepare
136
137 ; Stop / kill VBoxService
138 Call StopVBoxService
139
140 ; Stop / kill VBoxTray
141 Call StopVBoxTray
142
143 ; Delete VBoxService from registry
144 DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxService"
145
146 ; Delete old VBoxService.exe from install directory (replaced by VBoxTray.exe)
147 Delete /REBOOTOK "$INSTDIR\VBoxService.exe"
148
149FunctionEnd
150
151Function W2K_CopyFiles
152
153 SetOutPath "$INSTDIR"
154
155 ; Video driver
156 FILE "$%PATH_OUT%\bin\additions\VBoxVideo.sys"
157 FILE "$%PATH_OUT%\bin\additions\VBoxDisp.dll"
158
159 ; Mouse driver
160 FILE "$%PATH_OUT%\bin\additions\VBoxMouse.sys"
161 FILE "$%PATH_OUT%\bin\additions\VBoxMouse.inf"
162!ifdef VBOX_SIGN_ADDITIONS
163 FILE "$%PATH_OUT%\bin\additions\VBoxMouse.cat"
164!endif
165
166 ; Guest driver
167 FILE "$%PATH_OUT%\bin\additions\VBoxGuest.sys"
168 FILE "$%PATH_OUT%\bin\additions\VBoxGuest.inf"
169!ifdef VBOX_SIGN_ADDITIONS
170 FILE "$%PATH_OUT%\bin\additions\VBoxGuest.cat"
171!endif
172
173 ; Guest driver files
174 FILE "$%PATH_OUT%\bin\additions\VBCoInst.dll"
175 FILE "$%PATH_OUT%\bin\additions\VBoxTray.exe"
176 FILE "$%PATH_OUT%\bin\additions\VBoxControl.exe" ; Not used by W2K and up, but required by the .INF file
177
178 ; WHQL fake
179!ifdef WHQL_FAKE
180 FILE "$%PATH_OUT%\bin\additions\VBoxWHQLFake.exe"
181!endif
182
183 SetOutPath $g_strSystemDir
184
185 ; VBoxService
186 FILE "$%PATH_OUT%\bin\additions\VBoxService.exe" ; Only used by W2K and up (for Shared Folders at the moment)
187
188!if $%VBOX_WITH_CROGL% == "1"
189 ; crOpenGL
190 SetOutPath $g_strSystemDir
191 FILE "$%PATH_OUT%\bin\additions\VBoxOGLarrayspu.dll"
192 FILE "$%PATH_OUT%\bin\additions\VBoxOGLcrutil.dll"
193 FILE "$%PATH_OUT%\bin\additions\VBoxOGLerrorspu.dll"
194 FILE "$%PATH_OUT%\bin\additions\VBoxOGLpackspu.dll"
195 FILE "$%PATH_OUT%\bin\additions\VBoxOGLpassthroughspu.dll"
196 FILE "$%PATH_OUT%\bin\additions\VBoxOGLfeedbackspu.dll"
197 FILE "$%PATH_OUT%\bin\additions\VBoxOGL.dll"
198
199 !if $%BUILD_TARGET_ARCH% == "amd64"
200 ; Only 64-bit installer: Also copy 32-bit DLLs on 64-bit target arch in
201 ; Wow64 node (32-bit sub system).
202 ${EnableX64FSRedirection}
203 SetOutPath $SYSDIR
204 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLarrayspu.dll"
205 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLcrutil.dll"
206 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLerrorspu.dll"
207 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLpackspu.dll"
208 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLpassthroughspu.dll"
209 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGLfeedbackspu.dll"
210 FILE "$%VBOX_PATH_ADDITIONS_WIN_X86%\VBoxOGL.dll"
211 ${DisableX64FSRedirection}
212 !endif
213
214!endif ; VBOX_WITH_CROGL
215
216FunctionEnd
217
218!ifdef WHQL_FAKE
219
220Function W2K_WHQLFakeOn
221
222 StrCmp $g_bFakeWHQL "true" do
223 Goto exit
224
225do:
226
227 DetailPrint "Turning off WHQL protection..."
228 nsExec::ExecToLog '"$INSTDIR\VBoxWHQLFake.exe" "ignore"'
229
230exit:
231
232FunctionEnd
233
234Function W2K_WHQLFakeOff
235
236 StrCmp $g_bFakeWHQL "true" do
237 Goto exit
238
239do:
240
241 DetailPrint "Turning back on WHQL protection..."
242 nsExec::ExecToLog '"$INSTDIR\VBoxWHQLFake.exe" "warn"'
243
244exit:
245
246FunctionEnd
247
248!endif
249
250Function W2K_InstallFiles
251
252 ; The Shared Folder IFS goes to the system directory
253 FILE /oname=$g_strSystemDir\drivers\VBoxSF.sys "$%PATH_OUT%\bin\additions\VBoxSF.sys"
254 !insertmacro ReplaceDLL "$%PATH_OUT%\bin\additions\VBoxMRXNP.dll" "$g_strSystemDir\VBoxMRXNP.dll" "$INSTDIR"
255 AccessControl::GrantOnFile "$g_strSystemDir\VBoxMRXNP.dll" "(BU)" "GenericRead"
256
257 ; The VBoxTray hook DLL also goes to the system directory; it might be locked
258 !insertmacro ReplaceDLL "$%PATH_OUT%\bin\additions\VBoxHook.dll" "$g_strSystemDir\VBoxHook.dll" "$INSTDIR"
259 AccessControl::GrantOnFile "$g_strSystemDir\VBoxHook.dll" "(BU)" "GenericRead"
260
261 DetailPrint "Installing Drivers..."
262
263drv_video:
264
265 StrCmp $g_bNoVideoDrv "true" drv_guest
266 SetOutPath "$INSTDIR"
267 DetailPrint "Installing video driver ..."
268 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /i "PCI\VEN_80EE&DEV_BEEF&SUBSYS_00000000&REV_00" "$INSTDIR\VBoxVideo.inf" "Display"'
269 Pop $0 ; Ret value
270 LogText "Video driver result: $0"
271 IntCmp $0 0 +1 error error ; Check ret value (0=OK, 1=Error)
272
273drv_guest:
274
275 StrCmp $g_bNoGuestDrv "true" drv_mouse
276 DetailPrint "Installing guest driver ..."
277 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /i "PCI\VEN_80EE&DEV_CAFE&SUBSYS_00000000&REV_00" "$INSTDIR\VBoxGuest.inf" "Media"'
278 Pop $0 ; Ret value
279 LogText "Guest driver result: $0"
280 IntCmp $0 0 +1 error error ; Check ret value (0=OK, 1=Error)
281
282drv_mouse:
283
284 StrCmp $g_bNoMouseDrv "true" vbox_service
285 DetailPrint "Installing mouse filter ..."
286 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /inf "$INSTDIR\VBoxMouse.inf"'
287 Pop $0 ; Ret value
288 LogText "Mouse driver returned: $0"
289 IntCmp $0 0 +1 error error ; Check ret value (0=OK, 1=Error)
290
291vbox_service:
292
293 DetailPrint "Installing VirtualBox service ..."
294
295 ; Create the VBoxService service
296 ; No need to stop/remove the service here! Do this only on uninstallation!
297 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /createsvc "VBoxService" "VirtualBox Guest Additions Service" 16 2 "system32\VBoxService.exe" "Base"'
298 Pop $0 ; Ret value
299 LogText "VBoxService returned: $0"
300
301 ; Set service description
302 WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxService" "Description" "Manages VM runtime information, time synchronization, remote sysprep execution and miscellaneous utilities for guest operating systems."
303
304sf:
305
306 DetailPrint "Installing Shared Folders service ..."
307
308 ; Create the Shared Folders service ...
309 ; No need to stop/remove the service here! Do this only on uninstallation!
310 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /createsvc "VBoxSF" "VirtualBox Shared Folders" 2 1 "system32\drivers\VBoxSF.sys" "NetworkProvider"'
311
312 ; ... and the link to the network provider
313 WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "DeviceName" "\Device\VBoxMiniRdr"
314 WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "Name" "VirtualBox Shared Folders"
315 WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "ProviderPath" "$SYSDIR\VBoxMRXNP.dll"
316
317 ; Add default network providers (if not present or corrupted)
318 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /addnetprovider WebClient'
319 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /addnetprovider LanmanWorkstation'
320 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /addnetprovider RDPNP'
321
322 ; Add the shared folders network provider
323 DetailPrint "Adding network provider (Order = $g_iSfOrder) ..."
324 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /addnetprovider VBoxSF $g_iSfOrder'
325 Pop $0 ; Ret value
326 IntCmp $0 0 +1 error error ; Check ret value (0=OK, 1=Error)
327
328!if $%VBOX_WITH_CROGL% == "1"
329cropengl:
330
331 DetailPrint "Installing 3D OpenGL support ..."
332 WriteRegDWORD HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Version" 2
333 WriteRegDWORD HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "DriverVersion" 1
334 WriteRegDWORD HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Flags" 1
335 WriteRegStr HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Dll" "VBoxOGL.dll"
336
337 ; Write additional keys required for Windows 7 & XP 64-bit (but for 32-bit stuff)
338 Push $R0
339 Call GetWindowsVersion
340 Pop $R0 ; Windows Version
341 ${If} $R0 == '7'
342 ${OrIf} $R0 == 'XP'
343 WriteRegDWORD HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Version" 2
344 WriteRegDWORD HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "DriverVersion" 1
345 WriteRegDWORD HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Flags" 1
346 WriteRegStr HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL" "Dll" "VBoxOGL.dll"
347 ${EndIf}
348 Pop $R0
349!endif
350
351 Goto done
352
353error:
354
355 Abort "ERROR: Could not install files for Windows 2000 / XP / Vista! Installation aborted."
356
357done:
358
359FunctionEnd
360
361Function W2K_Main
362
363 SetOutPath "$INSTDIR"
364 SetOverwrite on
365
366 Call W2K_Prepare
367 Call W2K_CopyFiles
368
369!ifdef WHQL_FAKE
370 Call W2K_WHQLFakeOn
371!endif
372
373 Call W2K_InstallFiles
374
375!ifdef WHQL_FAKE
376 Call W2K_WHQLFakeOff
377!endif
378
379 Call W2K_SetVideoResolution
380
381FunctionEnd
382
383!macro W2K_UninstallInstDir un
384Function ${un}W2K_UninstallInstDir
385
386 Delete /REBOOTOK "$INSTDIR\VBoxVideo.sys"
387 Delete /REBOOTOK "$INSTDIR\VBoxVideo.inf"
388 Delete /REBOOTOK "$INSTDIR\VBoxVideo.cat"
389 Delete /REBOOTOK "$INSTDIR\VBoxDisp.dll"
390
391 Delete /REBOOTOK "$INSTDIR\VBoxMouse.sys"
392 Delete /REBOOTOK "$INSTDIR\VBoxMouse.inf"
393 Delete /REBOOTOK "$INSTDIR\VBoxMouse.cat"
394
395 Delete /REBOOTOK "$INSTDIR\VBoxTray.exe"
396
397 Delete /REBOOTOK "$INSTDIR\VBoxGuest.sys"
398 Delete /REBOOTOK "$INSTDIR\VBoxGuest.inf"
399 Delete /REBOOTOK "$INSTDIR\VBoxGuest.cat"
400
401 Delete /REBOOTOK "$INSTDIR\VBCoInst.dll"
402 Delete /REBOOTOK "$INSTDIR\VBoxControl.exe"
403 Delete /REBOOTOK "$INSTDIR\VBoxService.exe" ; File from an older installation maybe, not present here anymore
404
405 ; WHQL fake
406!ifdef WHQL_FAKE
407 Delete /REBOOTOK "$INSTDIR\VBoxWHQLFake.exe"
408!endif
409
410 ; Log file
411 Delete /REBOOTOK "$INSTDIR\install.log"
412 Delete /REBOOTOK "$INSTDIR\install_ui.log"
413
414FunctionEnd
415!macroend
416!insertmacro W2K_UninstallInstDir ""
417!insertmacro W2K_UninstallInstDir "un."
418
419!macro W2K_Uninstall un
420Function ${un}W2K_Uninstall
421
422 Push $0
423
424 ; Remove VirtualBox graphics adapter & PCI base drivers
425 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /u "PCI\VEN_80EE&DEV_BEEF&SUBSYS_00000000&REV_00"'
426 Pop $0 ; Ret value
427 ; @todo Add error handling here!
428
429 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /u "PCI\VEN_80EE&DEV_CAFE&SUBSYS_00000000&REV_00"'
430 Pop $0 ; Ret value
431 ; @todo Add error handling here!
432
433 ; @todo restore old drivers
434
435 ; Remove video driver
436 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /delsvc VBoxVideo'
437 Delete /REBOOTOK "$g_strSystemDir\drivers\VBoxVideo.sys"
438 Delete /REBOOTOK "$g_strSystemDir\VBoxDisp.dll"
439
440 ; Remove mouse driver
441 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /delsvc VBoxMouse'
442 Pop $0 ; Ret value
443 Delete /REBOOTOK "$g_strSystemDir\drivers\VBoxMouse.sys"
444 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /reg_delmultisz "SYSTEM\CurrentControlSet\Control\Class\{4D36E96F-E325-11CE-BFC1-08002BE10318}" "UpperFilters" "VBoxMouse"'
445 Pop $0 ; Ret value
446 ; @todo Add error handling here!
447
448 ; Delete the VBoxService service
449 Call ${un}StopVBoxService
450 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /delsvc VBoxService'
451 Pop $0 ; Ret value
452 DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxService"
453 Delete /REBOOTOK "$g_strSystemDir\VBoxService.exe"
454
455 ; GINA
456 Delete /REBOOTOK "$g_strSystemDir\VBoxGINA.dll"
457 ReadRegStr $0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinLogon" "GinaDLL"
458 ${If} $0 == "VBoxGINA.dll"
459 DeleteRegValue HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinLogon" "GinaDLL"
460 ${EndIf}
461
462 ; Delete VBoxTray
463 Call ${un}StopVBoxTray
464 DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxTray"
465
466 ; Remove guest driver
467 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /delsvc VBoxGuest'
468 Pop $0 ; Ret value
469 Delete /REBOOTOK "$g_strSystemDir\drivers\VBoxGuest.sys"
470 Delete /REBOOTOK "$g_strSystemDir\vbcoinst.dll"
471 Delete /REBOOTOK "$g_strSystemDir\VBoxTray.exe"
472 Delete /REBOOTOK "$g_strSystemDir\VBoxHook.dll"
473 DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxTray" ; Remove VBoxTray autorun
474 Delete /REBOOTOK "$g_strSystemDir\VBoxControl.exe"
475
476 ; Remove shared folders driver
477 call ${un}RemoveProvider ; Remove Shared Folders network provider from registry
478 ; @todo Add a /delnetprovider to VBoxDrvInst for doing this job!
479 nsExec::ExecToLog '"$INSTDIR\VBoxDrvInst.exe" /delsvc VBoxSF'
480 Delete /REBOOTOK "$g_strSystemDir\VBoxMRXNP.dll" ; The network provider DLL will be locked
481 Delete /REBOOTOK "$g_strSystemDir\drivers\VBoxSF.sys"
482
483!if $%VBOX_WITH_CROGL% == "1"
484
485 DetailPrint "Removing 3D graphics support ..."
486 !if $%BUILD_TARGET_ARCH% == "x86"
487 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLarrayspu.dll"
488 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLcrutil.dll"
489 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLerrorspu.dll"
490 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLpackspu.dll"
491 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLpassthroughspu.dll"
492 Delete /REBOOTOK "$g_strSystemDir\VBoxOGLfeedbackspu.dll"
493 Delete /REBOOTOK "$g_strSystemDir\VBoxOGL.dll"
494
495 ; Remove D3D stuff
496 ; @todo add a feature flag to only remove if installed explicitly
497 Delete /REBOOTOK "$g_strSystemDir\libWine.dll"
498 Delete /REBOOTOK "$g_strSystemDir\VBoxD3D8.dll"
499 Delete /REBOOTOK "$g_strSystemDir\VBoxD3D9.dll"
500 Delete /REBOOTOK "$g_strSystemDir\wined3d.dll"
501 ; Update DLL cache
502 IfFileExists "$g_strSystemDir\dllcache\msd3d8.dll" 0 +2
503 Delete /REBOOTOK "$g_strSystemDir\dllcache\d3d8.dll"
504 Rename /REBOOTOK "$g_strSystemDir\dllcache\msd3d8.dll" "$g_strSystemDir\dllcache\d3d8.dll"
505 IfFileExists g_strSystemDir\dllcache\msd3d9.dll" 0 +2
506 Delete /REBOOTOK "$g_strSystemDir\dllcache\d3d9.dll"
507 Rename /REBOOTOK "$g_strSystemDir\dllcache\msd3d9.dll" "$g_strSystemDir\dllcache\d3d9.dll"
508 ; Restore original DX DLLs
509 IfFileExists "$g_strSystemDir\msd3d8.dll" 0 +2
510 Delete /REBOOTOK "$g_strSystemDir\d3d8.dll"
511 Rename /REBOOTOK "$g_strSystemDir\msd3d8.dll" "$g_strSystemDir\d3d8.dll"
512 IfFileExists "$g_strSystemDir\msd3d9.dll" 0 +2
513 Delete /REBOOTOK "$g_strSystemDir\d3d9.dll"
514 Rename /REBOOTOK "$g_strSystemDir\msd3d9.dll" "$g_strSystemDir\d3d9.dll"
515
516 !else ; amd64
517
518 ; Only 64-bit installer: Also remove 32-bit DLLs on 64-bit target arch in Wow64 node
519 ${EnableX64FSRedirection}
520 Delete /REBOOTOK "$SYSDIR\VBoxOGLarrayspu.dll"
521 Delete /REBOOTOK "$SYSDIR\VBoxOGLcrutil.dll"
522 Delete /REBOOTOK "$SYSDIR\VBoxOGLerrorspu.dll"
523 Delete /REBOOTOK "$SYSDIR\VBoxOGLpackspu.dll"
524 Delete /REBOOTOK "$SYSDIR\VBoxOGLpassthroughspu.dll"
525 Delete /REBOOTOK "$SYSDIR\VBoxOGLfeedbackspu.dll"
526 Delete /REBOOTOK "$SYSDIR\VBoxOGL.dll"
527
528 ; Remove D3D stuff
529 ; @todo add a feature flag to only remove if installed explicitly
530 Delete /REBOOTOK "$SYSDIR\libWine.dll"
531 Delete /REBOOTOK "$SYSDIR\VBoxD3D8.dll"
532 Delete /REBOOTOK "$SYSDIR\VBoxD3D9.dll"
533 Delete /REBOOTOK "$SYSDIR\wined3d.dll"
534 ; Update DLL cache
535 IfFileExists "$SYSDIR\dllcache\msd3d8.dll" 0 +2
536 Delete /REBOOTOK "$SYSDIR\dllcache\d3d8.dll"
537 Rename /REBOOTOK "$SYSDIR\dllcache\msd3d8.dll" "$SYSDIR\dllcache\d3d8.dll"
538 IfFileExists "$SYSDIR\dllcache\msd3d9.dll" 0 +2
539 Delete /REBOOTOK "$SYSDIR\dllcache\d3d9.dll"
540 Rename /REBOOTOK "$SYSDIR\dllcache\msd3d9.dll" "$SYSDIR\dllcache\d3d9.dll"
541 ; Restore original DX DLLs
542 IfFileExists "$SYSDIR\msd3d8.dll" 0 +2
543 Delete /REBOOTOK "$SYSDIR\d3d8.dll"
544 Rename /REBOOTOK "$SYSDIR\msd3d8.dll" "$SYSDIR\d3d8.dll"
545 IfFileExists "$SYSDIR\msd3d9.dll" 0 +2
546 Delete /REBOOTOK "$SYSDIR\d3d9.dll"
547 Rename /REBOOTOK "$SYSDIR\msd3d9.dll" "$SYSDIR\d3d9.dll"
548 DeleteRegKey HKLM "SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL"
549 ${DisableX64FSRedirection}
550 !endif ; amd64
551
552 DeleteRegKey HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion\OpenGLDrivers\VBoxOGL"
553
554!endif ; VBOX_WITH_CROGL
555
556 Pop $0
557
558FunctionEnd
559!macroend
560!insertmacro W2K_Uninstall ""
561!insertmacro W2K_Uninstall "un."
562
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette