1 | <?xml version="1.0"?>
|
---|
2 | <!--
|
---|
3 | VirtualBox Windows Installation Script (WiX)
|
---|
4 |
|
---|
5 | Copyright (C) 2006-2020 Oracle Corporation
|
---|
6 |
|
---|
7 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | available from http://www.virtualbox.org. This file is free software;
|
---|
9 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | General Public License (GPL) as published by the Free Software
|
---|
11 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | -->
|
---|
15 |
|
---|
16 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
17 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
18 |
|
---|
19 | <?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
|
---|
20 | <Custom Action="ca_RollbackInstallNetFltArgs" Before="ca_RollbackInstallNetFlt" >
|
---|
21 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
22 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
23 | <?else ?>
|
---|
24 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
25 | <?endif ?>
|
---|
26 | </Custom>
|
---|
27 | <Custom Action="ca_RollbackInstallNetFlt" Before="ca_InstallNetFlt" >
|
---|
28 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
29 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
30 | <?else ?>
|
---|
31 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
32 | <?endif ?>
|
---|
33 | </Custom>
|
---|
34 | <Custom Action="ca_InstallNetFltArgs" Before="ca_InstallNetFlt" >
|
---|
35 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
36 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
37 | <?else ?>
|
---|
38 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
39 | <?endif ?>
|
---|
40 | </Custom>
|
---|
41 | <Custom Action="ca_InstallNetFlt" Before="InstallFinalize" >
|
---|
42 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
43 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
44 | <?else ?>
|
---|
45 | <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
|
---|
46 | <?endif ?>
|
---|
47 | </Custom>
|
---|
48 | <Custom Action="ca_RollbackUninstallNetFltArgs" Before="ca_RollbackUninstallNetFlt" >
|
---|
49 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
50 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
51 | <?else ?>
|
---|
52 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
53 | <?endif ?>
|
---|
54 | </Custom>
|
---|
55 | <Custom Action="ca_RollbackUninstallNetFlt" Before="ca_UninstallNetFlt" >
|
---|
56 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
57 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
58 | <?else ?>
|
---|
59 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
60 | <?endif ?>
|
---|
61 | </Custom>
|
---|
62 | <Custom Action="ca_UninstallNetFltArgs" Before="ca_UninstallNetFlt" >
|
---|
63 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
64 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
65 | <?else ?>
|
---|
66 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
67 | <?endif ?>
|
---|
68 | </Custom>
|
---|
69 | <Custom Action="ca_UninstallNetFlt" After="InstallInitialize" >
|
---|
70 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
71 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
72 | <?else ?>
|
---|
73 | <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
|
---|
74 | <?endif ?>
|
---|
75 | </Custom>
|
---|
76 |
|
---|
77 | <?endif?> <!-- VBOX_WITH_NETFLT -->
|
---|
78 |
|
---|
79 | </Include>
|
---|