1 | <!--
|
---|
2 | VirtualBox Windows Installation Script (WiX)
|
---|
3 |
|
---|
4 | Copyright (C) 2006-2016 Oracle Corporation
|
---|
5 |
|
---|
6 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
7 | available from http://www.virtualbox.org. This file is free software;
|
---|
8 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
9 | General Public License (GPL) as published by the Free Software
|
---|
10 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | -->
|
---|
14 |
|
---|
15 | <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
---|
16 | xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
|
---|
17 |
|
---|
18 | <Component Id="cp_NetAdp6Driver" Guid="945d9537-e60d-4bbf-9422-239739e31092" Win64="$(var.Property_Win64)">
|
---|
19 | <File Id="file_VBoxNetAdp6.sys" Name="VBoxNetAdp6.sys" KeyPath="yes"
|
---|
20 | Source="$(env.PATH_OUT)\bin\VBoxNetAdp6.sys" Checksum="yes"/>
|
---|
21 | <File Id="file_VBoxNetAdp6.inf" Name="VBoxNetAdp6.inf"
|
---|
22 | Source="$(env.PATH_OUT)\bin\VBoxNetAdp6.inf" />
|
---|
23 | <?if $(env.VBOX_SIGNING_MODE) != none ?>
|
---|
24 | <File Id="file_VBoxNetAdp6.cat" Name="VBoxNetAdp6.cat"
|
---|
25 | Source="$(env.PATH_OUT)\bin\VBoxNetAdp6.cat" />
|
---|
26 | <?endif ?>
|
---|
27 |
|
---|
28 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
29 | <Condition><![CDATA[(localMSMNetworkType="NDIS6")]]></Condition>
|
---|
30 | <?else ?>
|
---|
31 | <Condition><![CDATA[(NETWORKTYPE="NDIS6")]]></Condition>
|
---|
32 | <?endif ?>
|
---|
33 |
|
---|
34 | </Component>
|
---|
35 |
|
---|
36 | </Include>
|
---|