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 | <?if $(env.VBOX_WITH_NETFLT) = "yes" ?>
|
---|
19 | <Component Id="cp_NetFltDriver" Guid="F0A02F6B-A349-42f8-A2EB-569DCAAAF846" Win64="$(var.Property_Win64)">
|
---|
20 | <File Id="file_VBoxNetFlt.sys" Name="VBoxNetFlt.sys" KeyPath="yes"
|
---|
21 | Source="$(env.PATH_OUT)\bin\VBoxNetFlt.sys" Checksum="yes"/>
|
---|
22 | <File Id="file_VBoxNetFltNobj.sys" Name="VBoxNetFltNobj.dll"
|
---|
23 | Source="$(env.PATH_OUT)\bin\VBoxNetFltNobj.dll" Checksum="yes"/>
|
---|
24 | <File Id="file_VBoxNetFltM.inf" Name="VBoxNetFltM.inf"
|
---|
25 | Source="$(env.PATH_OUT)\bin\VBoxNetFltM.inf" />
|
---|
26 | <File Id="file_VBoxNetFlt.inf" Name="VBoxNetFlt.inf"
|
---|
27 | Source="$(env.PATH_OUT)\bin\VBoxNetFlt.inf" />
|
---|
28 | <?if $(env.VBOX_SIGNING_MODE) != none ?>
|
---|
29 | <File Id="file_VBoxNetFlt.cat" Name="VBoxNetFlt.cat"
|
---|
30 | Source="$(env.PATH_OUT)\bin\VBoxNetFlt.cat" />
|
---|
31 | <?endif ?>
|
---|
32 |
|
---|
33 | <?if $(env.VBOX_WITH_MSM_INSTALL) = "yes" ?>
|
---|
34 | <Condition><![CDATA[(localMSMNetworkType="NDIS5")]]></Condition>
|
---|
35 | <?else ?>
|
---|
36 | <Condition><![CDATA[(NETWORKTYPE="NDIS5")]]></Condition>
|
---|
37 | <?endif ?>
|
---|
38 |
|
---|
39 | </Component>
|
---|
40 |
|
---|
41 | <?endif ?> <!-- VBOX_WITH_NETFLT -->
|
---|
42 |
|
---|
43 | </Include>
|
---|