VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergeNetFltSeq.wxi

Last change on this file was 98103, checked in by vboxsync, 16 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
Line 
1<?xml version="1.0"?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4-->
5<!--
6 Copyright (C) 2006-2023 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_RollbackInstallNetFltArgs" Before="ca_RollbackInstallNetFlt" >
32 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
33 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
34 <?else ?>
35 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
36 <?endif ?>
37 </Custom>
38 <Custom Action="ca_RollbackInstallNetFlt" Before="ca_InstallNetFlt" >
39 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
40 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
41 <?else ?>
42 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
43 <?endif ?>
44 </Custom>
45 <Custom Action="ca_InstallNetFltArgs" Before="ca_InstallNetFlt" >
46 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
47 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
48 <?else ?>
49 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
50 <?endif ?>
51 </Custom>
52 <Custom Action="ca_InstallNetFlt" Before="InstallFinalize" >
53 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
54 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
55 <?else ?>
56 <![CDATA[$cp_NetFltDriver=3 AND (NOT Installed)]]>
57 <?endif ?>
58 </Custom>
59 <Custom Action="ca_RollbackUninstallNetFltArgs" Before="ca_RollbackUninstallNetFlt" >
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_RollbackUninstallNetFlt" Before="ca_UninstallNetFlt" >
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_UninstallNetFltArgs" Before="ca_UninstallNetFlt" >
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_UninstallNetFlt" 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>
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use