1 | <?xml version="1.0"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 | -->
|
---|
5 | <!--
|
---|
6 | Copyright (C) 2006-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 | <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
28 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
29 |
|
---|
30 | <?include Defines.wxi ?>
|
---|
31 |
|
---|
32 | <!-- Note: GUIDs in WiX *must* be uppercase! -->
|
---|
33 | <!-- Always include an upgrade ID or otherwise upgrade installation will not be possible. When doing
|
---|
34 | a major upgrade (more than just fixing a few files) change the product GUID. We always do a major
|
---|
35 | upgrade even for minor VBox updates. For that only change the product ID and the product version.
|
---|
36 | The upgrade code *never* must be changed! -->
|
---|
37 |
|
---|
38 | <!-- Update / Upgrade policies:
|
---|
39 | Update Type Package Code Product Version Product Code Upgrade Code
|
---|
40 | Small update change don't change don't change don't change
|
---|
41 | Minor update change change don't change don't change
|
---|
42 | Major upgrade change change change don't change -->
|
---|
43 |
|
---|
44 | <!-- Old product ID: <Product Id="B59FE77B-738F-4f1c-AB48-3104895AF676"
|
---|
45 | Old upgrade code of innotek: UpgradeCode="F5FFAEBF-97AE-4038-8F91-4DE719456127" -->
|
---|
46 |
|
---|
47 | <Module Id="msm_VBoxApp"
|
---|
48 | Language="!(loc.LANG)"
|
---|
49 | Version="$(var.Property_Version)">
|
---|
50 |
|
---|
51 | <Package Id="d255feb6-597d-4f49-a170-e34f289fa0d3"
|
---|
52 | Keywords="Installer, Setup"
|
---|
53 | Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) installation package"
|
---|
54 | Comments="$(env.VBOX_PRODUCT) installation package"
|
---|
55 | Manufacturer="$(env.VBOX_VENDOR)"
|
---|
56 | InstallerVersion="200"
|
---|
57 | AdminImage="yes"
|
---|
58 | InstallPrivileges="elevated"
|
---|
59 | Platform="$(var.Property_Platform)"
|
---|
60 | SummaryCodepage="1252"/>
|
---|
61 |
|
---|
62 | <?include CommonProperties.wxi ?>
|
---|
63 | <?include PublicProperties.wxi ?>
|
---|
64 |
|
---|
65 | <Property Id="local_VBOX_REGISTERFILEEXTENSIONS" Value="Empty" />
|
---|
66 | <Configuration Name="argRegisterExtensions" Format="Text" DefaultValue="Not passed"/>
|
---|
67 | <Substitution Table="CustomAction" Row="registerExtensions" Column="Target" Value="[=argRegisterExtensions]"/>
|
---|
68 | <CustomAction Id="registerExtensions" Property="local_VBOX_REGISTERFILEEXTENSIONS" Value="[local_VBOX_REGISTERFILEEXTENSIONS]" Execute="immediate" />
|
---|
69 |
|
---|
70 | <!-- Here comes the file/directory list -->
|
---|
71 | <Directory Id="TARGETDIR" Name="SourceDir">
|
---|
72 | <Directory Id="msm_VBoxApplicationFolder" FileSource=".">
|
---|
73 |
|
---|
74 | <?include VBoxMergeApp.wxi ?>
|
---|
75 |
|
---|
76 | </Directory> <!-- msm_VBoxApplicationFolder directory -->
|
---|
77 | </Directory> <!-- TARGETDIR -->
|
---|
78 |
|
---|
79 | <!-- Custom actions -->
|
---|
80 | <Binary Id="VBoxInstallHelper" SourceFile="$(env.PATH_OUT)\bin\VBoxInstallHelper.dll" />
|
---|
81 | <?include VBoxMergeAppCA.wxi ?>
|
---|
82 |
|
---|
83 | <InstallExecuteSequence>
|
---|
84 | <Custom Action="registerExtensions" After="AppSearch"/>
|
---|
85 | <?include VBoxMergeAppSeq.wxi ?>
|
---|
86 | </InstallExecuteSequence>
|
---|
87 |
|
---|
88 | </Module>
|
---|
89 | </Wix>
|
---|