1 | @echo off
|
---|
2 | rem $Id: win_postinstall.cmd 98103 2023-01-17 14:15:46Z vboxsync $
|
---|
3 | rem rem @file
|
---|
4 | rem Post installation script template for Windows.
|
---|
5 | rem
|
---|
6 | rem This runs after the target system has been booted, typically as
|
---|
7 | rem part of the first logon.
|
---|
8 | rem
|
---|
9 |
|
---|
10 | rem
|
---|
11 | rem Copyright (C) 2017-2023 Oracle and/or its affiliates.
|
---|
12 | rem
|
---|
13 | rem This file is part of VirtualBox base platform packages, as
|
---|
14 | rem available from https://www.virtualbox.org.
|
---|
15 | rem
|
---|
16 | rem This program is free software; you can redistribute it and/or
|
---|
17 | rem modify it under the terms of the GNU General Public License
|
---|
18 | rem as published by the Free Software Foundation, in version 3 of the
|
---|
19 | rem License.
|
---|
20 | rem
|
---|
21 | rem This program is distributed in the hope that it will be useful, but
|
---|
22 | rem WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
23 | rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
24 | rem General Public License for more details.
|
---|
25 | rem
|
---|
26 | rem You should have received a copy of the GNU General Public License
|
---|
27 | rem along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
28 | rem
|
---|
29 | rem SPDX-License-Identifier: GPL-3.0-only
|
---|
30 | rem
|
---|
31 |
|
---|
32 | rem Globals.
|
---|
33 | set MY_LOG_FILE=C:\vboxpostinstall.log
|
---|
34 |
|
---|
35 | rem Log header.
|
---|
36 | echo *** started >> %MY_LOG_FILE%
|
---|
37 | echo *** CD=%CD% >> %MY_LOG_FILE%
|
---|
38 | echo *** Environment BEGIN >> %MY_LOG_FILE%
|
---|
39 | set >> %MY_LOG_FILE%
|
---|
40 | echo *** Environment END >> %MY_LOG_FILE%
|
---|
41 |
|
---|
42 | @@VBOX_COND_HAS_PROXY@@
|
---|
43 | set PROXY=@@VBOX_INSERT_PROXY@@
|
---|
44 | set HTTP_PROXY=%PROXY%
|
---|
45 | set HTTPS_PROXY=%PROXY%
|
---|
46 | echo HTTP proxy is %HTTP_PROXY% >> %MY_LOG_FILE%
|
---|
47 | echo HTTPS proxy is %HTTPS_PROXY% >> %MY_LOG_FILE%
|
---|
48 | @@VBOX_COND_END@@
|
---|
49 |
|
---|
50 | @@VBOX_COND_IS_INSTALLING_ADDITIONS@@
|
---|
51 | rem
|
---|
52 | rem Install the guest additions.
|
---|
53 | rem
|
---|
54 |
|
---|
55 | rem First find the CDROM with the GAs on them.
|
---|
56 | set MY_VBOX_ADDITIONS=E:\vboxadditions
|
---|
57 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
58 | set MY_VBOX_ADDITIONS=D:\vboxadditions
|
---|
59 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
60 | set MY_VBOX_ADDITIONS=F:\vboxadditions
|
---|
61 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
62 | set MY_VBOX_ADDITIONS=G:\vboxadditions
|
---|
63 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
64 | set MY_VBOX_ADDITIONS=E:
|
---|
65 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
66 | set MY_VBOX_ADDITIONS=F:
|
---|
67 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
68 | set MY_VBOX_ADDITIONS=G:
|
---|
69 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
70 | set MY_VBOX_ADDITIONS=D:
|
---|
71 | if exist %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe goto found_vbox_additions
|
---|
72 | set MY_VBOX_ADDITIONS=E:\vboxadditions
|
---|
73 | :found_vbox_additions
|
---|
74 | echo *** MY_VBOX_ADDITIONS=%MY_VBOX_ADDITIONS%\ >> %MY_LOG_FILE%
|
---|
75 |
|
---|
76 | rem Then add signing certificate to trusted publishers
|
---|
77 | echo *** Running: %MY_VBOX_ADDITIONS%\cert\VBoxCertUtil.exe ... >> %MY_LOG_FILE%
|
---|
78 | %MY_VBOX_ADDITIONS%\cert\VBoxCertUtil.exe add-trusted-publisher %MY_VBOX_ADDITIONS%\cert\vbox*.cer --root %MY_VBOX_ADDITIONS%\cert\vbox*.cer >> %MY_LOG_FILE% 2>&1
|
---|
79 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
80 |
|
---|
81 | rem Then do the installation.
|
---|
82 | echo *** Running: %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe /S >> %MY_LOG_FILE%
|
---|
83 | %MY_VBOX_ADDITIONS%\VBoxWindowsAdditions.exe /S
|
---|
84 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
85 |
|
---|
86 | @@VBOX_COND_END@@
|
---|
87 |
|
---|
88 |
|
---|
89 | @@VBOX_COND_IS_INSTALLING_TEST_EXEC_SERVICE@@
|
---|
90 | rem
|
---|
91 | rem Install the Test Execution service
|
---|
92 | rem
|
---|
93 |
|
---|
94 | rem First find the CDROM with the validation kit on it.
|
---|
95 | set MY_VBOX_VALIDATION_KIT=E:\vboxvalidationkit
|
---|
96 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
97 | set MY_VBOX_VALIDATION_KIT=D:\vboxvalidationkit
|
---|
98 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
99 | set MY_VBOX_VALIDATION_KIT=F:\vboxvalidationkit
|
---|
100 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
101 | set MY_VBOX_VALIDATION_KIT=G:\vboxvalidationkit
|
---|
102 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
103 | set MY_VBOX_VALIDATION_KIT=E:
|
---|
104 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
105 | set MY_VBOX_VALIDATION_KIT=F:
|
---|
106 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
107 | set MY_VBOX_VALIDATION_KIT=G:
|
---|
108 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
109 | set MY_VBOX_VALIDATION_KIT=D:
|
---|
110 | if exist %MY_VBOX_VALIDATION_KIT%\vboxtxs-readme.txt goto found_vbox_validation_kit
|
---|
111 | set MY_VBOX_VALIDATION_KIT=E:\vboxvalidationkit
|
---|
112 | :found_vbox_validation_kit
|
---|
113 | echo *** MY_VBOX_VALIDATION_KIT=%MY_VBOX_VALIDATION_KIT%\ >> %MY_LOG_FILE%
|
---|
114 |
|
---|
115 | rem Copy over the files.
|
---|
116 | echo *** Running: mkdir %SystemDrive%\Apps >> %MY_LOG_FILE%
|
---|
117 | mkdir %SystemDrive%\Apps >> %MY_LOG_FILE% 2>&1
|
---|
118 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
119 |
|
---|
120 | echo *** Running: copy %MY_VBOX_VALIDATION_KIT%\win\* %SystemDrive%\Apps >> %MY_LOG_FILE%
|
---|
121 | copy %MY_VBOX_VALIDATION_KIT%\win\* %SystemDrive%\Apps >> %MY_LOG_FILE% 2>&1
|
---|
122 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
123 |
|
---|
124 | echo *** Running: copy %MY_VBOX_VALIDATION_KIT%\win\%PROCESSOR_ARCHITECTURE%\* %SystemDrive%\Apps >> %MY_LOG_FILE%
|
---|
125 | copy %MY_VBOX_VALIDATION_KIT%\win\%PROCESSOR_ARCHITECTURE%\* %SystemDrive%\Apps >> %MY_LOG_FILE% 2>&1
|
---|
126 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
127 |
|
---|
128 | rem Configure the firewall to allow TXS to listen.
|
---|
129 | echo *** Running: netsh firewall add portopening TCP 5048 "TestExecService 5048" >> %MY_LOG_FILE%
|
---|
130 | netsh firewall add portopening TCP 5048 "TestExecService 5048" >> %MY_LOG_FILE% 2>&1
|
---|
131 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
132 |
|
---|
133 | echo *** Running: netsh firewall add portopening TCP 5042 "TestExecService 5042" >> %MY_LOG_FILE%
|
---|
134 | netsh firewall add portopening TCP 5042 "TestExecService 5042" >> %MY_LOG_FILE% 2>&1
|
---|
135 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
136 |
|
---|
137 | rem Update the registry to autorun the service and make sure we've got autologon.
|
---|
138 | echo *** Running: reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v NTConfiguration /d %SystemDrive%\Apps\vboxtxs.cmd /f >> %MY_LOG_FILE%
|
---|
139 | reg.exe ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v NTConfiguration /d %SystemDrive%\Apps\vboxtxs.cmd /f >> %MY_LOG_FILE% 2>&1
|
---|
140 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
141 |
|
---|
142 | echo *** Running: reg.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v PowerdownAfterShutdown /d 1 /f >> %MY_LOG_FILE%
|
---|
143 | reg.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v PowerdownAfterShutdown /d 1 /f >> %MY_LOG_FILE% 2>&1
|
---|
144 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
145 |
|
---|
146 | echo *** Running: reg.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v ForceAutoLogon /d 1 /f >> %MY_LOG_FILE%
|
---|
147 | reg.exe ADD "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v ForceAutoLogon /d 1 /f >> %MY_LOG_FILE% 2>&1
|
---|
148 | echo *** ERRORLEVEL: %ERRORLEVEL% >> %MY_LOG_FILE%
|
---|
149 | rem AutoAdminLogon too if administrator?
|
---|
150 |
|
---|
151 | @@VBOX_COND_END@@
|
---|
152 |
|
---|
153 |
|
---|
154 | @@VBOX_COND_HAS_POST_INSTALL_COMMAND@@
|
---|
155 | rem
|
---|
156 | rem Run user command.
|
---|
157 | rem
|
---|
158 | echo *** Running custom user command ... >> %MY_LOG_FILE%
|
---|
159 | echo *** Running: "@@VBOX_INSERT_POST_INSTALL_COMMAND@@" >> %MY_LOG_FILE%
|
---|
160 | @@VBOX_INSERT_POST_INSTALL_COMMAND@@
|
---|
161 | @@VBOX_COND_END@@
|
---|
162 |
|
---|
163 | echo *** done >> %MY_LOG_FILE%
|
---|
164 |
|
---|