1 | ;
|
---|
2 | ; INF file for installing the VirtualBox Windows guest driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006 InnoTek Systemberatung GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
10 | ; in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
11 | ; distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
12 | ; be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | ;
|
---|
14 | ; If you received this file as part of a commercial VirtualBox
|
---|
15 | ; distribution, then only the terms of your commercial VirtualBox
|
---|
16 | ; license agreement apply instead of the previous paragraph.
|
---|
17 | ;
|
---|
18 |
|
---|
19 | [Version]
|
---|
20 | Signature="$WINDOWS NT$"
|
---|
21 | Class=System
|
---|
22 | ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
|
---|
23 | Provider=%INNOTEK%
|
---|
24 | LayoutFile=layout.inf
|
---|
25 | DriverVer=12/31/2004,5.00.2072
|
---|
26 |
|
---|
27 | [DestinationDirs]
|
---|
28 | DefaultDestDir = 12 ; drivers
|
---|
29 | VBox_CoInstaller_CopyFiles = 11 ; system32
|
---|
30 | VBoxService_CopyFiles = 11 ; system32
|
---|
31 |
|
---|
32 | [Manufacturer]
|
---|
33 | %INNOTEK_MFG% = VBoxGuest
|
---|
34 |
|
---|
35 | [VBoxGuest]
|
---|
36 | %VBoxGuest.DeviceDesc%=VBoxGuest_Install,PCI\VEN_80ee&DEV_cafe
|
---|
37 |
|
---|
38 | [VBoxGuest_Install]
|
---|
39 | CopyFiles = VBoxGuest_CopyFiles, VBoxService_CopyFiles
|
---|
40 | AddReg = VBoxService_Add_Reg
|
---|
41 |
|
---|
42 | [VBoxGuest_CopyFiles]
|
---|
43 | VBoxGuest.sys
|
---|
44 |
|
---|
45 | [VBoxService_CopyFiles]
|
---|
46 | VBoxService.exe
|
---|
47 | VBoxControl.exe
|
---|
48 |
|
---|
49 | [VBoxGuest_Install.Services]
|
---|
50 | AddService = VBoxGuest, 0x00000002, VBoxGuest_ServiceInstallSection
|
---|
51 | DelService = VBoxService, 0x00000004
|
---|
52 |
|
---|
53 | [VBoxGuest_ServiceInstallSection]
|
---|
54 | DisplayName = %VBoxGuest_svcdesc%
|
---|
55 | ServiceType = 0x00000001 ; kernel driver
|
---|
56 | StartType = 0x00000003 ; demand start
|
---|
57 | ErrorControl = 0x00000001 ; normal error handling
|
---|
58 | ServiceBinary = %12%\VBoxGuest.sys
|
---|
59 |
|
---|
60 | [VBoxService_Add_Reg]
|
---|
61 | HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, VBoxService, 0x00000000, %11%\VBoxService.exe
|
---|
62 |
|
---|
63 | [VBoxGuest_Install.CoInstallers]
|
---|
64 | AddReg = VBoxGuest_Install_CoInstallers_reg
|
---|
65 | CopyFiles = VBox_CoInstaller_CopyFiles
|
---|
66 |
|
---|
67 | [VBox_CoInstaller_CopyFiles]
|
---|
68 | vbcoinst.dll
|
---|
69 |
|
---|
70 | [VBoxGuest_Install_CoInstallers_reg]
|
---|
71 | HKR,,CoInstallers32,0x00010000,"vbcoinst.dll,VBoxCoInstaller"
|
---|
72 |
|
---|
73 | [Strings]
|
---|
74 | INNOTEK_MFG = "InnoTek Systemberatung GmbH"
|
---|
75 | INNOTEK = "InnoTek Systemberatung GmbH"
|
---|
76 | VBoxGuest.DeviceDesc = "VirtualBox Device"
|
---|
77 | VBoxGuest_svcdesc = "VirtualBox Guest Driver"
|
---|
78 | VBoxService_svcdesc = "VirtualBox Guest Service"
|
---|