1 | ; $Id: VBoxUSBMon.inf 71986 2018-04-23 15:47:24Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VBox USB Monitor driver - Installation file
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2011-2017 Oracle Corporation
|
---|
8 | ;
|
---|
9 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
11 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | ; General Public License (GPL) as published by the Free Software
|
---|
13 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | ;
|
---|
17 | ; The contents of this file may alternatively be used under the terms
|
---|
18 | ; of the Common Development and Distribution License Version 1.0
|
---|
19 | ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | ; VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | ; CDDL are applicable instead of those of the GPL.
|
---|
22 | ;
|
---|
23 | ; You may elect to license modified versions of this file under the
|
---|
24 | ; terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | ;
|
---|
26 |
|
---|
27 | [Version]
|
---|
28 | Signature="$Windows NT$"
|
---|
29 | Class=System
|
---|
30 | ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
|
---|
31 | Provider=%ORACLE%
|
---|
32 | ;edit-DriverVer=08/26/2008,2.00.0000
|
---|
33 | DriverPackageType=KernelService
|
---|
34 | ;cat CatalogFile=VBoxUSBMon.cat
|
---|
35 |
|
---|
36 | [DestinationDirs]
|
---|
37 | DefaultDestDir = 12
|
---|
38 |
|
---|
39 | [DefaultInstall@DOT-NT-ARCH@]
|
---|
40 | CopyFiles=VBoxUSBMon_CopyFiles
|
---|
41 |
|
---|
42 | [DefaultInstall@DOT-NT-ARCH@.Services]
|
---|
43 | AddService=VBoxUSBMon,0x00000002,VBoxUSBMon_Service,VBoxUSBMon_AddEventLog
|
---|
44 |
|
---|
45 | ;; Cannot get this to work (same works fine for VBoxDrv):
|
---|
46 | ;; [Manufacturer]
|
---|
47 | ;; %ORACLE%=Oracle@COMMA-NT-ARCH@
|
---|
48 | ;;
|
---|
49 | ;; ; Models section (referenced by [Manufacturer]).
|
---|
50 | ;; [Oracle@DOT-NT-ARCH@]
|
---|
51 | ;; %VBoxUSBMon.DRVDESC%=VBoxUSBMonInstall,root\VBoxUSBMon
|
---|
52 | ;;
|
---|
53 | ;; [VBoxUSBMonInstall@DOT-NT-ARCH@]
|
---|
54 | ;; CopyFiles=VBoxUSBMon_CopyFiles
|
---|
55 | ;;
|
---|
56 | ;; [VBoxUSBMonInstall@DOT-NT-ARCH@.Services]
|
---|
57 | ;; AddService=VBoxUSBMon,0x00000002,VBoxUSBMon_Service,VBoxUSBMon_AddEventLog
|
---|
58 |
|
---|
59 | [SourceDisksFiles]
|
---|
60 | VBoxUSBMon.sys=1
|
---|
61 |
|
---|
62 | [SourceDisksNames]
|
---|
63 | 1=%VBoxUSBMon.DSKDESC%,
|
---|
64 |
|
---|
65 | [VBoxUSBMon_CopyFiles]
|
---|
66 | VBoxUSBMon.sys
|
---|
67 |
|
---|
68 | [VBoxUSBMon_Service]
|
---|
69 | DisplayName = %VBoxUSBMon.SVCDESC%
|
---|
70 | ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
---|
71 | ;StartType = 3 ; SERVICE_DEMAND_START
|
---|
72 | StartType = 1 ; autostart to fix Vista problem
|
---|
73 | ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
---|
74 | ServiceBinary = %12%\VBoxUSBMon.sys
|
---|
75 |
|
---|
76 | [VBoxUSBMon_AddEventLog]
|
---|
77 | AddReg = VBoxUSBMon_AddEventLogRegistry
|
---|
78 |
|
---|
79 | [VBoxUSBMon_AddEventLogRegistry]
|
---|
80 | HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\IoLogMsg.dll"
|
---|
81 | HKR,,TypesSupported,0x00010001,7
|
---|
82 |
|
---|
83 | [Strings]
|
---|
84 | ORACLE = "Oracle Corporation"
|
---|
85 | VBoxUSBMon.SVCDESC = "VirtualBox USB Monitor Service"
|
---|
86 | VBoxUSBMon.DRVDESC = "VirtualBox USB Monitor Driver"
|
---|
87 | VBoxUSBMon.DSKDESC = "VirtualBox USB Monitor Driver Installation Disk"
|
---|
88 |
|
---|