1 | ; $Id: VBoxDrv.inf 76925 2019-01-21 16:50:06Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; VirtualBox Support Driver - Windows Driver INF file.
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2019 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=VBoxDrv.cat
|
---|
35 |
|
---|
36 | [DestinationDirs]
|
---|
37 | DefaultDestDir = 12
|
---|
38 |
|
---|
39 | [DefaultInstall@DOT-NT-ARCH@]
|
---|
40 | CopyFiles=VBoxDrv_CopyFiles
|
---|
41 |
|
---|
42 | [DefaultInstall@[email protected]]
|
---|
43 | AddService=VBoxDrv,0x00000002,VBoxDrv_Service
|
---|
44 |
|
---|
45 | [DefaultUninstall@DOT-NT-ARCH@]
|
---|
46 | DefFiles=VBoxDrv_CopyFiles
|
---|
47 |
|
---|
48 | [DefaultUninstall@[email protected]]
|
---|
49 | DelService=VBoxDrv,0x00000200
|
---|
50 |
|
---|
51 | ;; This doesn't actually work either (see VBoxUSBMon), though it triggers in the
|
---|
52 | ;; installer rather at manual installation on my test system (could be polluted & confused).
|
---|
53 | ;; This may apparently also causes unloading trouble due to 'root\VBoxDrv' or something related to that.
|
---|
54 | ;; [Manufacturer]
|
---|
55 | ;; %ORACLE%=Oracle@COMMA-NT-ARCH@
|
---|
56 | ;;
|
---|
57 | ;; ; Models section (referenced by [Manufacturer]).
|
---|
58 | ;; [Oracle@DOT-NT-ARCH@]
|
---|
59 | ;; %VBoxDrv.DRVDESC%=VBoxDrvInstall,root\VBoxDrv
|
---|
60 | ;;
|
---|
61 | ;; [VBoxDrvInstall@DOT-NT-ARCH@]
|
---|
62 | ;; CopyFiles=VBoxDrv_CopyFiles
|
---|
63 | ;;
|
---|
64 | ;; [VBoxDrvInstall@[email protected]]
|
---|
65 | ;; AddService=VBoxDrv,0x00000002,VBoxDrv_Service
|
---|
66 |
|
---|
67 | [SourceDisksFiles]
|
---|
68 | VBoxDrv.sys=1
|
---|
69 |
|
---|
70 | [SourceDisksNames]
|
---|
71 | 1=%VBoxDrv.DSKDESC%,
|
---|
72 |
|
---|
73 | [VBoxDrv_CopyFiles]
|
---|
74 | VBoxDrv.sys
|
---|
75 |
|
---|
76 | [VBoxDrv_Service]
|
---|
77 | DisplayName = %VBoxDrv.SVCDESC%
|
---|
78 | ServiceType = 1 ; SERVICE_KERNEL_DRIVER
|
---|
79 | StartType = 3 ; SERVICE_DEMAND_START
|
---|
80 | ErrorControl = 1 ; SERVICE_ERROR_NORMAL
|
---|
81 | ServiceBinary = %12%\VBoxDrv.sys
|
---|
82 |
|
---|
83 | [Strings]
|
---|
84 | ORACLE = "Oracle Corporation"
|
---|
85 | VBoxDrv.SVCDESC = "VirtualBox Service"
|
---|
86 | VBoxDrv.DRVDESC = "VirtualBox Driver"
|
---|
87 | VBoxDrv.DSKDESC = "VirtualBox Driver Installation Disk"
|
---|