1 | ;
|
---|
2 | ; INF file for installing the VirtualBox Windows guest driver
|
---|
3 | ;
|
---|
4 | ; Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 (GPL) as published by the Free Software
|
---|
10 | ; Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
11 | ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
12 | ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
13 | ;
|
---|
14 | ; Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
15 | ; Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
16 | ; additional information or have any questions.
|
---|
17 | ;
|
---|
18 |
|
---|
19 | [Version]
|
---|
20 | Signature="$WINDOWS NT$"
|
---|
21 | Class=System
|
---|
22 | ClassGuid={4D36E97D-E325-11CE-BFC1-08002BE10318}
|
---|
23 | Provider=%SUN%
|
---|
24 | LayoutFile=layout.inf
|
---|
25 | ;edit-DriverVer=08/26/2008,2.00.0000
|
---|
26 | ;cat CatalogFile=VBoxGuest.cat
|
---|
27 |
|
---|
28 | [SourceDisksNames]
|
---|
29 | 1 = %VBoxGuest.MediaDesc%
|
---|
30 | 2 = %VBoxControl.MediaDesc%
|
---|
31 | 3 = %VBoxTray.MediaDesc%
|
---|
32 | 4 = %vbcoinst.MediaDesc%
|
---|
33 |
|
---|
34 | [SourceDisksFiles]
|
---|
35 | VBoxGuest.sys = 1
|
---|
36 | VBoxControl.exe = 2
|
---|
37 | VBoxTray.exe = 3
|
---|
38 | vbcoinst.dll = 4
|
---|
39 |
|
---|
40 | [DestinationDirs]
|
---|
41 | DefaultDestDir = 12 ; drivers
|
---|
42 | VBox_CoInstaller_CopyFiles = 11 ; system32
|
---|
43 | VBoxTray_CopyFiles = 11 ; system32
|
---|
44 |
|
---|
45 | [Manufacturer]
|
---|
46 | ;x86 %SUN%=VBoxGuest
|
---|
47 | ;amd64 %SUN%=VBoxGuest, NTamd64
|
---|
48 |
|
---|
49 | ;x86 [VBoxGuest]
|
---|
50 | ;amd64 [VBoxGuest.NTamd64]
|
---|
51 | %VBoxGuest.DeviceDesc%=VBoxGuest_Install,PCI\VEN_80ee&DEV_cafe
|
---|
52 |
|
---|
53 | [VBoxGuest_Install]
|
---|
54 | CopyFiles = VBoxGuest_CopyFiles, VBoxTray_CopyFiles
|
---|
55 | AddReg = VBoxTray_Add_Reg
|
---|
56 |
|
---|
57 | [VBoxGuest_CopyFiles]
|
---|
58 | VBoxGuest.sys
|
---|
59 |
|
---|
60 | [VBoxTray_CopyFiles]
|
---|
61 | VBoxTray.exe
|
---|
62 | VBoxControl.exe
|
---|
63 |
|
---|
64 | [VBoxGuest_Install.Services]
|
---|
65 | AddService = VBoxGuest, 0x00000002, VBoxGuest_ServiceInstallSection
|
---|
66 | DelService = VBoxTray, 0x00000004
|
---|
67 |
|
---|
68 | [VBoxGuest_ServiceInstallSection]
|
---|
69 | DisplayName = %VBoxGuest_svcdesc%
|
---|
70 | ServiceType = 0x00000001 ; kernel driver
|
---|
71 | StartType = 0x00000003 ; demand start
|
---|
72 | ErrorControl = 0x00000001 ; normal error handling
|
---|
73 | ServiceBinary = %12%\VBoxGuest.sys
|
---|
74 |
|
---|
75 | [VBoxTray_Add_Reg]
|
---|
76 | HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, VBoxTray, 0x00000000, %11%\VBoxTray.exe
|
---|
77 |
|
---|
78 | [VBoxGuest_Install.CoInstallers]
|
---|
79 | AddReg = VBoxGuest_Install_CoInstallers_reg
|
---|
80 | CopyFiles = VBox_CoInstaller_CopyFiles
|
---|
81 |
|
---|
82 | [VBox_CoInstaller_CopyFiles]
|
---|
83 | vbcoinst.dll
|
---|
84 |
|
---|
85 | [VBoxGuest_Install_CoInstallers_reg]
|
---|
86 | HKR,,CoInstallers32,0x00010000,"vbcoinst.dll,VBoxCoInstaller"
|
---|
87 |
|
---|
88 | [Strings]
|
---|
89 | SUN = "Sun Microsystems, Inc."
|
---|
90 | VBoxGuest.DeviceDesc = "VirtualBox Device"
|
---|
91 | VBoxGuest_svcdesc = "VirtualBox Guest Driver"
|
---|
92 | VBoxTray_svcdesc = "VirtualBox Guest Tray"
|
---|
93 |
|
---|