2788N/A<?xml version="1.0"?>
2788N/A<!--
2788N/A VirtualBox Windows Installation Script (WiX)
2788N/A
2788N/A Copyright (C) 2006-2014 Oracle Corporation
2788N/A
2788N/A This file is part of VirtualBox Open Source Edition (OSE), as
2788N/A available from http://www.virtualbox.org. This file is free software;
2788N/A you can redistribute it and/or modify it under the terms of the GNU
2788N/A General Public License (GPL) as published by the Free Software
2788N/A Foundation, in version 2 as it comes in the "COPYING" file of the
2788N/A VirtualBox OSE distribution. VirtualBox OSE is distributed in the
2788N/A hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
2788N/A-->
2788N/A
2788N/A<Include xmlns="http://schemas.microsoft.com/wix/2006/wi"
2788N/A xmlns:difxapp="http://schemas.microsoft.com/wix/DifxAppExtension">
2788N/A
2788N/A <Directory Id="dir_VBoxUSBFilter" Name="filter">
2788N/A <Component Id="cp_USBFilterDriver" Guid="B7D782D2-96DF-4775-A0E1-A76CF7B04B65" Win64="$(var.Property_Win64)">
2788N/A <difxapp:Driver AddRemovePrograms="no" ForceInstall="yes" DeleteFiles="yes"
2788N/A Legacy="$(var.Property_DriverLegacy)" Sequence="0" PlugAndPlayPrompt="no"/>
2788N/A <File Id="file_VBoxUSBMon.sys" Name="VBoxUSBMon.sys"
2788N/A Source="$(env.PATH_OUT)\bin\VBoxUSBMon.sys" />
2788N/A <File Id="file_VBoxUSBMon.inf" Name="VBoxUSBMon.inf"
3215N/A Source="$(env.PATH_OUT)\bin\VBoxUSBMon.inf" />
2788N/A<?if $(env.VBOX_SIGNING_MODE)!= none ?>
2788N/A <File Id="file_VBoxUSBMon.cat" Name="VBoxUSBMon.cat"
2788N/A Source="$(env.PATH_OUT)\bin\VBoxUSBMon.cat" />
2788N/A<?endif ?>
2788N/A </Component>
2788N/A </Directory>
2788N/A
2788N/A <Directory Id="dir_VBoxUSBDevice" Name="device">
2788N/A <Component Id="cp_USBDeviceDriver" Guid="010FE46A-E358-43E2-8BDC-38BC8BEC82E0" Win64="$(var.Property_Win64)">
2788N/A <difxapp:Driver AddRemovePrograms="no" ForceInstall="yes" DeleteFiles="yes"
2788N/A Legacy="$(var.Property_DriverLegacy)" Sequence="0" PlugAndPlayPrompt="no"/>
2788N/A <File Id="file_VBoxUSB.sys" Name="VBoxUSB.sys"
2788N/A Source="$(env.PATH_OUT)\bin\VBoxUSB.sys" />
4153N/A <File Id="file_VBoxUSB.inf" Name="VBoxUSB.inf"
2788N/A Source="$(env.PATH_OUT)\bin\VBoxUSB.inf" />
2788N/A<?if $(env.VBOX_SIGNING_MODE)!= none ?>
2788N/A <File Id="file_VBoxUSB.cat" Name="VBoxUSB.cat"
2788N/A Source="$(env.PATH_OUT)\bin\VBoxUSB.cat" />
2788N/A<?endif ?>
2788N/A </Component>
2788N/A </Directory>
2788N/A
2788N/A</Include>
2788N/A