1 | ; $Id: VBoxGuestAdditionsNT4.nsh 96407 2022-08-22 17:43:14Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VBoxGuestAdditionsNT4.nsh - Guest Additions installation for NT4.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox base platform packages, as
|
---|
10 | ; available from https://www.virtualbox.org.
|
---|
11 | ;
|
---|
12 | ; This program is free software; you can redistribute it and/or
|
---|
13 | ; modify it under the terms of the GNU General Public License
|
---|
14 | ; as published by the Free Software Foundation, in version 3 of the
|
---|
15 | ; License.
|
---|
16 | ;
|
---|
17 | ; This program is distributed in the hope that it will be useful, but
|
---|
18 | ; WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | ; General Public License for more details.
|
---|
21 | ;
|
---|
22 | ; You should have received a copy of the GNU General Public License
|
---|
23 | ; along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | ;
|
---|
25 | ; SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | ;
|
---|
27 |
|
---|
28 | Function NT4_SetVideoResolution
|
---|
29 |
|
---|
30 | ; Check for all required parameters
|
---|
31 | StrCmp $g_iScreenX "0" missingParms
|
---|
32 | StrCmp $g_iScreenY "0" missingParms
|
---|
33 | StrCmp $g_iScreenBpp "0" missingParms
|
---|
34 | Goto haveParms
|
---|
35 |
|
---|
36 | missingParms:
|
---|
37 |
|
---|
38 | ${LogVerbose} "Missing display parameters for NT4, setting default (640x480, 8 BPP) ..."
|
---|
39 |
|
---|
40 | StrCpy $g_iScreenX '640' ; Default value
|
---|
41 | StrCpy $g_iScreenY '480' ; Default value
|
---|
42 | StrCpy $g_iScreenBpp '8' ; Default value
|
---|
43 |
|
---|
44 | ; Write setting into registry to show the desktop applet on next boot
|
---|
45 | WriteRegStr HKLM "SYSTEM\CurrentControlSet\Control\GraphicsDrivers\NewDisplay" "" ""
|
---|
46 |
|
---|
47 | haveParms:
|
---|
48 |
|
---|
49 | ${LogVerbose} "Setting display parameters for NT4 ($g_iScreenXx$g_iScreenY, $g_iScreenBpp BPP) ..."
|
---|
50 |
|
---|
51 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.BitsPerPel" $g_iScreenBpp
|
---|
52 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.Flags" 0x00000000
|
---|
53 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.VRefresh" 0x00000001
|
---|
54 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.XPanning" 0x00000000
|
---|
55 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.XResolution" $g_iScreenX
|
---|
56 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.YPanning" 0x00000000
|
---|
57 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Services\vboxvideo\Device0" "DefaultSettings.YResolution" $g_iScreenY
|
---|
58 |
|
---|
59 | FunctionEnd
|
---|
60 |
|
---|
61 | Function NT4_SaveMouseDriverInfo
|
---|
62 |
|
---|
63 | Push $0
|
---|
64 |
|
---|
65 | ; !!! NOTE !!!
|
---|
66 | ; Due to some re-branding (see functions Uninstall_Sun, Uninstall_Innotek and
|
---|
67 | ; Uninstall_SunXVM) the installer *has* to transport the very first saved i8042prt
|
---|
68 | ; value to the current installer's "uninstall" directory in both mentioned
|
---|
69 | ; functions above, otherwise NT4 will be screwed because it then would store
|
---|
70 | ; "VBoxMouseNT.sys" as the original i8042prt driver which obviously isn't there
|
---|
71 | ; after uninstallation anymore
|
---|
72 | ; !!! NOTE !!!
|
---|
73 |
|
---|
74 | ; Save current mouse driver info so we may restore it on uninstallation
|
---|
75 | ; But first check if we already installed the additions otherwise we will
|
---|
76 | ; overwrite it with the VBoxMouseNT.sys
|
---|
77 | ReadRegStr $0 HKLM "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH}
|
---|
78 | StrCmp $0 "" 0 exists
|
---|
79 |
|
---|
80 | ${LogVerbose} "Saving mouse driver info ..."
|
---|
81 | ReadRegStr $0 HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath"
|
---|
82 | WriteRegStr HKLM "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH} $0
|
---|
83 | Goto exit
|
---|
84 |
|
---|
85 | exists:
|
---|
86 |
|
---|
87 | ${LogVerbose} "Mouse driver info already saved."
|
---|
88 | Goto exit
|
---|
89 |
|
---|
90 | exit:
|
---|
91 |
|
---|
92 | !ifdef _DEBUG
|
---|
93 | ${LogVerbose} "Mouse driver info: $0"
|
---|
94 | !endif
|
---|
95 |
|
---|
96 | Pop $0
|
---|
97 |
|
---|
98 | FunctionEnd
|
---|
99 |
|
---|
100 | Function NT4_Prepare
|
---|
101 |
|
---|
102 | ${If} $g_bNoVBoxServiceExit == "false"
|
---|
103 | ; Stop / kill VBoxService
|
---|
104 | Call StopVBoxService
|
---|
105 | ${EndIf}
|
---|
106 |
|
---|
107 | ${If} $g_bNoVBoxTrayExit == "false"
|
---|
108 | ; Stop / kill VBoxTray
|
---|
109 | Call StopVBoxTray
|
---|
110 | ${EndIf}
|
---|
111 |
|
---|
112 | ; Delete VBoxService from registry
|
---|
113 | DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxService"
|
---|
114 |
|
---|
115 | ; Delete old VBoxService.exe from install directory (replaced by VBoxTray.exe)
|
---|
116 | Delete /REBOOTOK "$INSTDIR\VBoxService.exe"
|
---|
117 |
|
---|
118 | FunctionEnd
|
---|
119 |
|
---|
120 | Function NT4_CopyFiles
|
---|
121 |
|
---|
122 | ${LogVerbose} "Copying files for NT4 ..."
|
---|
123 |
|
---|
124 | SetOutPath "$INSTDIR"
|
---|
125 | FILE "$%PATH_OUT%\bin\additions\VBoxGuestDrvInst.exe"
|
---|
126 | AccessControl::SetOnFile "$INSTDIR\VBoxGuestDrvInst.exe" "(BU)" "GenericRead"
|
---|
127 | FILE "$%PATH_OUT%\bin\additions\RegCleanup.exe"
|
---|
128 | AccessControl::SetOnFile "$INSTDIR\RegCleanup.exe" "(BU)" "GenericRead"
|
---|
129 | !ifdef VBOX_WITH_ADDITIONS_SHIPPING_AUDIO_TEST
|
---|
130 | FILE "$%PATH_OUT%\bin\additions\VBoxAudioTest.exe"
|
---|
131 | !endif
|
---|
132 |
|
---|
133 | ; The files to install for NT 4, they go into the system directories
|
---|
134 | SetOutPath "$SYSDIR"
|
---|
135 | FILE "$%PATH_OUT%\bin\additions\VBoxDisp.dll"
|
---|
136 | AccessControl::SetOnFile "$SYSDIR\VBoxDisp.dll" "(BU)" "GenericRead"
|
---|
137 | FILE "$%PATH_OUT%\bin\additions\VBoxTray.exe"
|
---|
138 | AccessControl::SetOnFile "$SYSDIR\VBoxTray.exe" "(BU)" "GenericRead"
|
---|
139 | FILE "$%PATH_OUT%\bin\additions\VBoxHook.dll"
|
---|
140 | AccessControl::SetOnFile "$SYSDIR\VBoxHook.dll" "(BU)" "GenericRead"
|
---|
141 | FILE "$%PATH_OUT%\bin\additions\VBoxControl.exe"
|
---|
142 | AccessControl::SetOnFile "$SYSDIR\VBoxControl.exe" "(BU)" "GenericRead"
|
---|
143 |
|
---|
144 | ; VBoxService
|
---|
145 | FILE "$%PATH_OUT%\bin\additions\VBoxService.exe"
|
---|
146 | AccessControl::SetOnFile "$SYSDIR\VBoxService.exe" "(BU)" "GenericRead"
|
---|
147 |
|
---|
148 | ; The drivers into the "drivers" directory
|
---|
149 | SetOutPath "$SYSDIR\drivers"
|
---|
150 | FILE "$%PATH_OUT%\bin\additions\VBoxVideo.sys"
|
---|
151 | AccessControl::SetOnFile "$SYSDIR\drivers\VBoxVideo.sys" "(BU)" "GenericRead"
|
---|
152 | FILE "$%PATH_OUT%\bin\additions\VBoxMouseNT.sys"
|
---|
153 | AccessControl::SetOnFile "$SYSDIR\drivers\VBoxMouseNT.sys" "(BU)" "GenericRead"
|
---|
154 | FILE "$%PATH_OUT%\bin\additions\VBoxGuest.sys"
|
---|
155 | AccessControl::SetOnFile "$SYSDIR\drivers\VBoxGuest.sys" "(BU)" "GenericRead"
|
---|
156 | ;FILE "$%PATH_OUT%\bin\additions\VBoxSFNT.sys" ; Shared Folders not available on NT4!
|
---|
157 | ;AccessControl::SetOnFile "$SYSDIR\drivers\VBoxSFNT.sys" "(BU)" "GenericRead"
|
---|
158 |
|
---|
159 | FunctionEnd
|
---|
160 |
|
---|
161 | Function NT4_InstallFiles
|
---|
162 |
|
---|
163 | ${LogVerbose} "Installing drivers for NT4 ..."
|
---|
164 |
|
---|
165 | ; Install guest driver
|
---|
166 | ${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" service create $\"VBoxGuest$\" $\"VBoxGuest Support Driver$\" 1 1 $\"$SYSDIR\drivers\VBoxGuest.sys$\" $\"Base$\"" "false"
|
---|
167 |
|
---|
168 | ; Bugfix: Set "Start" to 1, otherwise, VBoxGuest won't start on boot-up!
|
---|
169 | ; Bugfix: Correct invalid "ImagePath" (\??\C:\WINNT\...)
|
---|
170 | WriteRegDWORD HKLM "SYSTEM\CurrentControlSet\Services\VBoxGuest" "Start" 1
|
---|
171 | WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxGuest" "ImagePath" "\SystemRoot\System32\DRIVERS\VBoxGuest.sys"
|
---|
172 |
|
---|
173 | ; Run VBoxTray when Windows NT starts
|
---|
174 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxTray" '"$SYSDIR\VBoxTray.exe"'
|
---|
175 |
|
---|
176 | ; Video driver
|
---|
177 | ${CmdExecute} "$\"$INSTDIR\VBoxGuestDrvInst.exe$\" /i" "false"
|
---|
178 |
|
---|
179 | ${LogVerbose} "Installing VirtualBox service ..."
|
---|
180 |
|
---|
181 | ; Create the VBoxService service
|
---|
182 | ; No need to stop/remove the service here! Do this only on uninstallation!
|
---|
183 | ${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" service create $\"VBoxService$\" $\"VirtualBox Guest Additions Service$\" 16 2 $\"%SystemRoot%\system32\VBoxService.exe$\" $\"Base$\"" "false"
|
---|
184 |
|
---|
185 | ; Create the Shared Folders service ...
|
---|
186 | ;nsSCM::Install /NOUNLOAD "VBoxSF" "VirtualBox Shared Folders" 1 1 "$SYSDIR\drivers\VBoxSFNT.sys" "Network" "" "" ""
|
---|
187 | ;Pop $0 ; Ret value
|
---|
188 |
|
---|
189 | !ifdef _DEBUG
|
---|
190 | ;${LogVerbose} "SCM::Install VBoxSFNT.sys: $0"
|
---|
191 | !endif
|
---|
192 |
|
---|
193 | ;IntCmp $0 0 +1 error error ; Check ret value (0=OK, 1=Error)
|
---|
194 |
|
---|
195 | ; ... and the link to the network provider
|
---|
196 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "DeviceName" "\Device\VBoxMiniRdr"
|
---|
197 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "Name" "VirtualBox Shared Folders"
|
---|
198 | ;WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\VBoxSF\NetworkProvider" "ProviderPath" "$SYSDIR\VBoxMRXNP.dll"
|
---|
199 |
|
---|
200 | ; Add the shared folders network provider
|
---|
201 | ;${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" netprovider add VBoxSF" "false"
|
---|
202 |
|
---|
203 | Goto done
|
---|
204 |
|
---|
205 | error:
|
---|
206 | Abort "ERROR: Could not install files for Windows NT4! Installation aborted."
|
---|
207 |
|
---|
208 | done:
|
---|
209 |
|
---|
210 | FunctionEnd
|
---|
211 |
|
---|
212 | Function NT4_Main
|
---|
213 |
|
---|
214 | SetOutPath "$INSTDIR"
|
---|
215 |
|
---|
216 | Call NT4_Prepare
|
---|
217 | Call NT4_CopyFiles
|
---|
218 |
|
---|
219 | ; This removes the flag "new display driver installed on the next bootup
|
---|
220 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\RunOnce" "VBoxGuestInst" '"$INSTDIR\RegCleanup.exe"'
|
---|
221 |
|
---|
222 | Call NT4_SaveMouseDriverInfo
|
---|
223 | Call NT4_InstallFiles
|
---|
224 | Call NT4_SetVideoResolution
|
---|
225 |
|
---|
226 | ; Write mouse driver name to registry overwriting the default name
|
---|
227 | WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" "\SystemRoot\System32\DRIVERS\VBoxMouseNT.sys"
|
---|
228 |
|
---|
229 | FunctionEnd
|
---|
230 |
|
---|
231 | !macro NT4_UninstallInstDir un
|
---|
232 | Function ${un}NT4_UninstallInstDir
|
---|
233 |
|
---|
234 | ; Delete remaining files
|
---|
235 | Delete /REBOOTOK "$INSTDIR\VBoxGuestDrvInst.exe"
|
---|
236 | Delete /REBOOTOK "$INSTDIR\RegCleanup.exe"
|
---|
237 |
|
---|
238 | FunctionEnd
|
---|
239 | !macroend
|
---|
240 | !insertmacro NT4_UninstallInstDir ""
|
---|
241 | !insertmacro NT4_UninstallInstDir "un."
|
---|
242 |
|
---|
243 | !macro NT4_Uninstall un
|
---|
244 | Function ${un}NT4_Uninstall
|
---|
245 |
|
---|
246 | Push $0
|
---|
247 |
|
---|
248 | ; Remove the guest driver service
|
---|
249 | ${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" service delete VBoxGuest" "true"
|
---|
250 | Delete /REBOOTOK "$SYSDIR\drivers\VBoxGuest.sys"
|
---|
251 |
|
---|
252 | ; Delete the VBoxService service
|
---|
253 | Call ${un}StopVBoxService
|
---|
254 | ${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" service delete VBoxService" "true"
|
---|
255 | DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxService"
|
---|
256 | Delete /REBOOTOK "$SYSDIR\VBoxService.exe"
|
---|
257 |
|
---|
258 | ; Delete the VBoxTray app
|
---|
259 | Call ${un}StopVBoxTray
|
---|
260 | DeleteRegValue HKLM "Software\Microsoft\Windows\CurrentVersion\Run" "VBoxTray"
|
---|
261 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\RunOnce" "VBoxTrayDel" "$SYSDIR\cmd.exe /c del /F /Q $SYSDIR\VBoxTray.exe"
|
---|
262 | Delete /REBOOTOK "$SYSDIR\VBoxTray.exe" ; If it can't be removed cause it's running, try next boot with "RunOnce" key above!
|
---|
263 | Delete /REBOOTOK "$SYSDIR\VBoxHook.dll"
|
---|
264 |
|
---|
265 | ; Delete the VBoxControl utility
|
---|
266 | Delete /REBOOTOK "$SYSDIR\VBoxControl.exe"
|
---|
267 |
|
---|
268 | ; Delete the VBoxVideo service
|
---|
269 | ${CmdExecute} "$\"$INSTDIR\VBoxDrvInst.exe$\" service delete VBoxVideo" "true"
|
---|
270 |
|
---|
271 | ; Delete the VBox video driver files
|
---|
272 | Delete /REBOOTOK "$SYSDIR\drivers\VBoxVideo.sys"
|
---|
273 | Delete /REBOOTOK "$SYSDIR\VBoxDisp.dll"
|
---|
274 |
|
---|
275 | ; Get original mouse driver info and restore it
|
---|
276 | ReadRegStr $0 ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" ${ORG_MOUSE_PATH}
|
---|
277 | ; If we still got our driver stored in $0 then this will *never* work, so
|
---|
278 | ; warn the user and set it to the default driver to not screw up NT4 here
|
---|
279 | ${If} $0 == "System32\DRIVERS\VBoxMouseNT.sys"
|
---|
280 | WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" "\SystemRoot\System32\DRIVERS\i8042prt.sys"
|
---|
281 | ${LogVerbose} "Old mouse driver is set to VBoxMouseNT.sys, defaulting to i8042prt.sys ..."
|
---|
282 | ${Else}
|
---|
283 | WriteRegStr HKLM "SYSTEM\CurrentControlSet\Services\i8042prt" "ImagePath" $0
|
---|
284 | ${EndIf}
|
---|
285 | Delete /REBOOTOK "$SYSDIR\drivers\VBoxMouseNT.sys"
|
---|
286 |
|
---|
287 | Pop $0
|
---|
288 |
|
---|
289 | FunctionEnd
|
---|
290 | !macroend
|
---|
291 | !insertmacro NT4_Uninstall ""
|
---|
292 | !insertmacro NT4_Uninstall "un."
|
---|