1 | <?xml version="1.0" encoding="utf-8"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 | -->
|
---|
5 | <!--
|
---|
6 | Copyright (C) 2015-2022 Oracle and/or its affiliates.
|
---|
7 |
|
---|
8 | This file is part of VirtualBox base platform packages, as
|
---|
9 | available from https://www.virtualbox.org.
|
---|
10 |
|
---|
11 | This program is free software; you can redistribute it and/or
|
---|
12 | modify it under the terms of the GNU General Public License
|
---|
13 | as published by the Free Software Foundation, in version 3 of the
|
---|
14 | License.
|
---|
15 |
|
---|
16 | This program is distributed in the hope that it will be useful, but
|
---|
17 | WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
19 | General Public License for more details.
|
---|
20 |
|
---|
21 | You should have received a copy of the GNU General Public License
|
---|
22 | along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
23 |
|
---|
24 | SPDX-License-Identifier: GPL-3.0-only
|
---|
25 | -->
|
---|
26 |
|
---|
27 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
28 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
29 |
|
---|
30 | <!-- Define our own public properties here in order to get those also recognized in case
|
---|
31 | case we're building the installer as MSM modules -->
|
---|
32 |
|
---|
33 | <!-- Whether or not a desktop shortcut should be created. -->
|
---|
34 | <Property Id="VBOX_INSTALLDESKTOPSHORTCUT" Value="1" Secure="yes"/>
|
---|
35 | <SetProperty Id="VBOX_INSTALLDESKTOPSHORTCUT" After="AppSearch" Sequence="both"
|
---|
36 | Value="{}"><![CDATA[VBOX_INSTALLDESKTOPSHORTCUT="0"]]></SetProperty>
|
---|
37 |
|
---|
38 | <!-- Whether or not start menu entries should be created. -->
|
---|
39 | <Property Id="VBOX_INSTALLSTARTMENUENTRIES" Value="1" Secure="yes"/>
|
---|
40 | <SetProperty Id="VBOX_INSTALLSTARTMENUENTRIES" After="AppSearch" Sequence="both"
|
---|
41 | Value="{}"><![CDATA[VBOX_INSTALLSTARTMENUENTRIES="0"]]></SetProperty>
|
---|
42 |
|
---|
43 | <!-- Whether or not a desktop shortcut for the Quick Launch Bar should be created -->
|
---|
44 | <Property Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" Value="1" Secure="yes"/>
|
---|
45 | <SetProperty Id="VBOX_INSTALLQUICKLAUNCHSHORTCUT" After="AppSearch" Sequence="both"
|
---|
46 | Value="{}"><![CDATA[VBOX_INSTALLQUICKLAUNCHSHORTCUT="0"]]></SetProperty>
|
---|
47 |
|
---|
48 | <!-- Whether or not VirtualBox should be started automatically right after successful installation -->
|
---|
49 | <Property Id="VBOX_START" Value="1" Secure="yes"/>
|
---|
50 | <SetProperty Id="VBOX_START" After="AppSearch" Sequence="both"
|
---|
51 | Value="{}"><![CDATA[VBOX_START="0"]]></SetProperty>
|
---|
52 | </Include>
|
---|