VirtualBox

source: vbox/trunk/src/VBox/Installer/win/VBoxMergeNetAdp6.wxs

Last change on this file was 106061, checked in by vboxsync, 3 weeks ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1<!--
2 VirtualBox Windows Installation Script (WiX)
3-->
4<!--
5 Copyright (C) 2006-2024 Oracle and/or its affiliates.
6
7 This file is part of VirtualBox base platform packages, as
8 available from https://www.virtualbox.org.
9
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation, in version 3 of the
13 License.
14
15 This program is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, see <https://www.gnu.org/licenses>.
22
23 SPDX-License-Identifier: GPL-3.0-only
24-->
25
26<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
27
28 <?include Defines.wxi ?>
29
30 <Module Id="msm_VBoxNetworkAdp6" Language="!(loc.LANG)" Version="$(var.Property_Version)" Guid="f6f83806-bd72-477d-af1d-275dca62cb6d" InstallerVersion="200">
31
32 <SummaryInformation Keywords="Installer, Setup"
33 Description="$(env.VBOX_PRODUCT) $(var.Property_VersionExt) NetAdp6 installation package"
34 Manufacturer="$(env.VBOX_VENDOR)" />
35
36 <?include CommonProperties.wxi ?>
37 <?include PublicProperties.wxi ?>
38
39<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
40 <Property Id="localMSMNetworkType" Value="NDIS6" />
41 <Configuration Name="passedNetworkType" Format="Text" DefaultValue="Not passed" />
42 <Substitution Table="CustomAction" Row="setNetworkTypeADP6" Column="Target" Value="[=passedNetworkType]" />
43 <CustomAction Id="setNetworkTypeADP6" Property="NETWORKTYPE" Value="[localMSMNetworkType]" Execute="immediate" />
44 <CustomAction Id="correctNetworkTypeADP6" Property="NETWORKTYPE" Value="NDIS5" Execute="immediate" />
45<?endif?>
46
47 <!-- Here comes the file/directory list -->
48 <!-- TARGETDIR -->
49
50 <!-- Custom actions -->
51 <Binary Id="VBoxInstallHelper" SourceFile="$(env.PATH_OUT)\bin\VBoxInstallHelper.dll" />
52 <?include VBoxMergeNetAdp6CA.wxi ?>
53
54 <InstallExecuteSequence>
55<?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
56 <Custom Action="setNetworkTypeADP6" After="CostInitialize" />
57 <Custom Action="correctNetworkTypeADP6" After="setNetworkTypeADP6" Condition="(VersionNT &lt; 600)" />
58<?endif?>
59 <?include VBoxMergeNetAdp6Seq.wxi ?>
60 </InstallExecuteSequence>
61
62
63 <Directory Id="msm_VBoxNetworkAdp6Folder" FileSource=".">
64
65 <?include VBoxMergeNetAdp6.wxi ?>
66
67 </Directory> <!-- msm_VBoxNetworkAdp6Folder -->
68 </Module>
69</Wix>
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