VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergeNetAdp6Seq.wxi@ 66325

Last change on this file since 66325 was 66325, checked in by vboxsync, 8 years ago

Installer/win: fix conditions for VBoxNetAdp uninstall (both NDIS5 and NDIS6 variant), regression which crept in when the NDIS6 support was introduced. Does not affect the filter drivers.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.4 KB
Line 
1<?xml version="1.0"?>
2<!--
3 VirtualBox Windows Installation Script (WiX)
4
5 Copyright (C) 2006-2016 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 <!-- Create host-only interfaces on first-time install -->
21 <Custom Action="ca_CreateHostOnlyInterfaceNDIS6Args" Before="ca_CreateHostOnlyInterfaceNDIS6" >
22 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
23 <![CDATA[(NOT Installed) AND (VersionNT >= 600) AND ($cp_NetAdp6Driver=3)]]>
24 <?else ?>
25 <![CDATA[(NOT Installed) AND (VersionNT >= 600) AND ($cp_NetAdp6Driver=3)]]>
26 <?endif ?>
27 </Custom>
28 <Custom Action="ca_CreateHostOnlyInterfaceNDIS6" Before="InstallFinalize" >
29 <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
30 <![CDATA[(NOT Installed) AND (VersionNT >= 600) AND ($cp_NetAdp6Driver=3)]]>
31 <?else ?>
32 <![CDATA[(NOT Installed) AND (VersionNT >= 600) AND ($cp_NetAdp6Driver=3)]]>
33 <?endif ?>
34 </Custom>
35 <!-- Don't remove the host-only interfaces on update, only on uninstall -->
36 <Custom Action="ca_RemoveHostOnlyInterfacesNDIS6" After="InstallInitialize" >
37 <![CDATA[NOT (UPGRADINGPRODUCTCODE) AND (Installed) AND (REMOVE="ALL")]]>
38 </Custom>
39 <!-- First stop the existing host-only interfaces on update ... -->
40 <Custom Action="ca_StopHostOnlyInterfacesNDIS6" After="InstallInitialize" >
41 <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
42 </Custom>
43
44 <Custom Action="ca_UninstallNetAdp6Args" Before="ca_UninstallNetAdp6" >
45 <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
46 </Custom>
47 <Custom Action="ca_UninstallNetAdp6" After="ca_StopHostOnlyInterfacesNDIS6" >
48 <![CDATA[(UPGRADINGPRODUCTCODE) OR (REMOVE="ALL")]]>
49 </Custom>
50
51<?endif ?>
52
53</Include>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette