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 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
28 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
29 |
|
---|
30 | <?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
|
---|
31 | <Custom Action="ca_RollbackInstallNetLwfArgs" Before="ca_RollbackInstallNetLwf" >
|
---|
32 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
33 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
34 | <?else ?>
|
---|
35 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
36 | <?endif ?>
|
---|
37 | </Custom>
|
---|
38 | <Custom Action="ca_RollbackInstallNetLwf" Before="ca_InstallNetLwf" >
|
---|
39 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
40 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
41 | <?else ?>
|
---|
42 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
43 | <?endif ?>
|
---|
44 | </Custom>
|
---|
45 | <Custom Action="ca_InstallNetLwfArgs" Before="ca_InstallNetLwf" >
|
---|
46 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
47 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
48 | <?else ?>
|
---|
49 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
50 | <?endif ?>
|
---|
51 | </Custom>
|
---|
52 | <Custom Action="ca_InstallNetLwf" Before="InstallFinalize" >
|
---|
53 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
54 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
55 | <?else ?>
|
---|
56 | <![CDATA[(VersionNT >= 600) AND $cp_NetLwfDriver=3 AND (NOT Installed)]]>
|
---|
57 | <?endif ?>
|
---|
58 | </Custom>
|
---|
59 | <Custom Action="ca_RollbackUninstallNetLwfArgs" Before="ca_RollbackUninstallNetLwf" >
|
---|
60 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
61 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
62 | <?else ?>
|
---|
63 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
64 | <?endif ?>
|
---|
65 | </Custom>
|
---|
66 | <Custom Action="ca_RollbackUninstallNetLwf" Before="ca_UninstallNetLwf" >
|
---|
67 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
68 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
69 | <?else ?>
|
---|
70 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
71 | <?endif ?>
|
---|
72 | </Custom>
|
---|
73 | <Custom Action="ca_UninstallNetLwfArgs" Before="ca_UninstallNetLwf" >
|
---|
74 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
75 | <![CDATA[((UPGRADINGPRODUCTCODE) OR (REMOVE="ALL"))]]>
|
---|
76 | <?else ?>
|
---|
77 | <![CDATA[((UPGRADINGPRODUCTCODE) OR (REMOVE="ALL"))]]>
|
---|
78 | <?endif ?>
|
---|
79 | </Custom>
|
---|
80 | <Custom Action="ca_UninstallNetLwf" After="InstallInitialize" >
|
---|
81 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
82 | <![CDATA[((UPGRADINGPRODUCTCODE) OR (REMOVE="ALL"))]]>
|
---|
83 | <?else ?>
|
---|
84 | <![CDATA[((UPGRADINGPRODUCTCODE) OR (REMOVE="ALL"))]]>
|
---|
85 | <?endif ?>
|
---|
86 | </Custom>
|
---|
87 |
|
---|
88 | <?endif?> <!-- VBOX_WITH_NETFLT -->
|
---|
89 |
|
---|
90 | </Include>
|
---|