1 | ;
|
---|
2 | ; VBox USB Monitor driver
|
---|
3 | ;
|
---|
4 | ; Installation file
|
---|
5 | ;
|
---|
6 | ; Copyright (C) 2011 Oracle Corporation
|
---|
7 | ;
|
---|
8 | ; This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | ; available from http://www.virtualbox.org. This file is free software;
|
---|
10 | ; you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | ; General Public License (GPL) as published by the Free Software
|
---|
12 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | ;
|
---|
16 |
|
---|
17 | [Version]
|
---|
18 | Signature = "$Windows NT$"
|
---|
19 | Provider = %ORACLE%
|
---|
20 | ;edit-DriverVer = 08/26/2008,2.00.0000
|
---|
21 | DriverPackageType = KernelService
|
---|
22 | Class = System
|
---|
23 | ClassGuid = {ce4a90b5-1d8c-435d-b349-232ce55cb17f}
|
---|
24 | ;cat CatalogFile = VBoxUSBMon.cat
|
---|
25 |
|
---|
26 | [Manufacturer]
|
---|
27 | ;x86 %ORACLE%=ORACLE
|
---|
28 | ;amd64 %ORACLE%=ORACLE, NTamd64
|
---|
29 |
|
---|
30 | [DefaultInstall.NT]
|
---|
31 | CopyFiles = VBoxUSBMonitor.CopyFiles
|
---|
32 |
|
---|
33 | [VBoxUSBMonitor.CopyFiles]
|
---|
34 | VBoxUSBMon.sys
|
---|
35 |
|
---|
36 | [DefaultInstall.NT.Services]
|
---|
37 | AddService = VBoxUSBMon, 0x00000002, VBoxUSBMon_Service_Inst
|
---|
38 |
|
---|
39 | [VBoxUSBMon_Service_Inst]
|
---|
40 | DisplayName = %VBoxUSBMon.SvcDesc%
|
---|
41 | ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
---|
42 | ;StartType = 3 ; SERVICE_DEMAND_START
|
---|
43 | StartType = 1 ; autostart to fix Vista problem
|
---|
44 | ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
---|
45 | ServiceBinary = %12%\VBoxUSBMon.sys
|
---|
46 |
|
---|
47 | [SourceDisksNames]
|
---|
48 | 1 = %VBoxUSBMon.MediaDesc%
|
---|
49 |
|
---|
50 | [SourceDisksFiles]
|
---|
51 | VBoxUSBMon.sys = 1
|
---|
52 |
|
---|
53 | [DestinationDirs]
|
---|
54 | DefaultDestDir = 12 ; DIRID_DRIVERS
|
---|
55 |
|
---|
56 | [Strings]
|
---|
57 | ORACLE = "Oracle Corporation"
|
---|
58 | VBoxUSBMon.SvcDesc = "VirtualBox USB Monitor Driver"
|
---|
59 | VBoxUSBMon.MediaDesc = "VirtualBox USB Monitor Driver Disc"
|
---|
60 |
|
---|
61 | ; Useful constants
|
---|
62 | SERVICE_KERNEL_DRIVER = 1
|
---|
63 | SERVICE_DEMAND_START = 3
|
---|
64 | SERVICE_ERROR_IGNORE = 0
|
---|
65 | REG_EXPAND_SZ = 0x00020000
|
---|
66 | REG_DWORD = 0x00010001
|
---|