1 | ;
|
---|
2 | ; INF file for installing the VirtualBox Windows guest driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 innotek 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=08/21/2006,5.00.2072
|
---|
26 | ;cat CatalogFile=VBoxGuest.cat
|
---|
27 |
|
---|
28 | ;cat [SourceDisksNames]
|
---|
29 | ;cat 1 = %VBoxGuest.MediaDesc%
|
---|
30 | ;cat 2 = %VBoxControl.MediaDesc%
|
---|
31 | ;cat 3 = %VBoxService.MediaDesc%
|
---|
32 | ;cat 4 = %vbcoinst.MediaDesc%
|
---|
33 | ;cat
|
---|
34 | ;cat [SourceDisksFiles]
|
---|
35 | ;cat VBoxGuest.sys = 1
|
---|
36 | ;cat VBoxControl.exe = 2
|
---|
37 | ;cat VBoxService.exe = 3
|
---|
38 | ;cat vbcoinst.dll = 4
|
---|
39 |
|
---|
40 | [DestinationDirs]
|
---|
41 | DefaultDestDir = 12 ; drivers
|
---|
42 | VBox_CoInstaller_CopyFiles = 11 ; system32
|
---|
43 | VBoxService_CopyFiles = 11 ; system32
|
---|
44 |
|
---|
45 | [Manufacturer]
|
---|
46 | %INNOTEK_MFG% = VBoxGuest
|
---|
47 |
|
---|
48 | [VBoxGuest]
|
---|
49 | %VBoxGuest.DeviceDesc%=VBoxGuest_Install,PCI\VEN_80ee&DEV_cafe
|
---|
50 |
|
---|
51 | [VBoxGuest_Install]
|
---|
52 | CopyFiles = VBoxGuest_CopyFiles, VBoxService_CopyFiles
|
---|
53 | AddReg = VBoxService_Add_Reg
|
---|
54 |
|
---|
55 | [VBoxGuest_CopyFiles]
|
---|
56 | VBoxGuest.sys
|
---|
57 |
|
---|
58 | [VBoxService_CopyFiles]
|
---|
59 | VBoxService.exe
|
---|
60 | VBoxControl.exe
|
---|
61 |
|
---|
62 | [VBoxGuest_Install.Services]
|
---|
63 | AddService = VBoxGuest, 0x00000002, VBoxGuest_ServiceInstallSection
|
---|
64 | DelService = VBoxService, 0x00000004
|
---|
65 |
|
---|
66 | [VBoxGuest_ServiceInstallSection]
|
---|
67 | DisplayName = %VBoxGuest_svcdesc%
|
---|
68 | ServiceType = 0x00000001 ; kernel driver
|
---|
69 | StartType = 0x00000003 ; demand start
|
---|
70 | ErrorControl = 0x00000001 ; normal error handling
|
---|
71 | ServiceBinary = %12%\VBoxGuest.sys
|
---|
72 |
|
---|
73 | [VBoxService_Add_Reg]
|
---|
74 | HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, VBoxService, 0x00000000, %11%\VBoxService.exe
|
---|
75 |
|
---|
76 | [VBoxGuest_Install.CoInstallers]
|
---|
77 | AddReg = VBoxGuest_Install_CoInstallers_reg
|
---|
78 | CopyFiles = VBox_CoInstaller_CopyFiles
|
---|
79 |
|
---|
80 | [VBox_CoInstaller_CopyFiles]
|
---|
81 | vbcoinst.dll
|
---|
82 |
|
---|
83 | [VBoxGuest_Install_CoInstallers_reg]
|
---|
84 | HKR,,CoInstallers32,0x00010000,"vbcoinst.dll,VBoxCoInstaller"
|
---|
85 |
|
---|
86 | [Strings]
|
---|
87 | INNOTEK_MFG = "innotek GmbH"
|
---|
88 | INNOTEK = "innotek GmbH"
|
---|
89 | VBoxGuest.DeviceDesc = "VirtualBox Device"
|
---|
90 | VBoxGuest_svcdesc = "VirtualBox Guest Driver"
|
---|
91 | VBoxService_svcdesc = "VirtualBox Guest Service"
|
---|
92 |
|
---|
93 | ;cat VBoxGuest.MediaDesc = "VirtualBox Guest Mouse Driver Installation Media"
|
---|
94 | ;cat VBoxControl.MediaDesc = "VirtualBox Guest Mouse Driver Installation Media"
|
---|
95 | ;cat VBoxService.MediaDesc = "VirtualBox Guest Mouse Driver Installation Media"
|
---|
96 | ;cat vbcoinst.MediaDesc = "VirtualBox Guest Mouse Driver Installation Media"
|
---|
97 |
|
---|