1 | ; $Id: VBoxSF.inf 69496 2017-10-28 14:55:58Z vboxsync $
|
---|
2 | ;; @file
|
---|
3 | ; INF file for installing the VirtualBox Windows guest driver
|
---|
4 | ;
|
---|
5 |
|
---|
6 | ;
|
---|
7 | ; Copyright (C) 2006-2017 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 |
|
---|
18 | [Version]
|
---|
19 | Signature="$Windows NT$"
|
---|
20 | Class=System
|
---|
21 | ClassGuid={ce4a90b5-1d8c-435d-b349-232ce55cb17f}
|
---|
22 | Provider=%ORACLE%
|
---|
23 | ;edit-DriverVer=08/26/2008,2.00.0000
|
---|
24 | DriverPackageType=Network
|
---|
25 | ;cat CatalogFile=VBoxSF.cat
|
---|
26 |
|
---|
27 | ;cat [SourceDisksNames]
|
---|
28 | ;cat 1 = %VBoxSF.MediaDesc%
|
---|
29 | ;cat
|
---|
30 | ;cat [SourceDisksFiles]
|
---|
31 | ;cat VBoxSF.sys = 1
|
---|
32 |
|
---|
33 | [DestinationDirs]
|
---|
34 | DefaultDestDir = 12 ; drivers
|
---|
35 | VBoxMRXNP_CopyFiles = 11 ; system32
|
---|
36 |
|
---|
37 | [Manufacturer]
|
---|
38 | ;x86 %ORACLE%=VBoxSF
|
---|
39 | ;amd64 %ORACLE%=VBoxSF, NTamd64
|
---|
40 |
|
---|
41 | ;x86 [VBoxSF]
|
---|
42 | ;amd64 [VBoxSF.NTamd64]
|
---|
43 | %VBoxSF.DeviceDesc%=VBoxSF_Install,PCI\VEN_80ee&DEV_cafe
|
---|
44 |
|
---|
45 | [VBoxSF_Install]
|
---|
46 | CopyFiles = VBoxSF_CopyFiles, VBoxMRXNP_CopyFiles
|
---|
47 | AddReg = VBoxMRXNP_Add_Reg
|
---|
48 |
|
---|
49 | [VBoxSF_CopyFiles]
|
---|
50 | VBoxSF.sys
|
---|
51 |
|
---|
52 | [VBoxMRXNP_CopyFiles]
|
---|
53 | VBoxMRXNP.dll
|
---|
54 |
|
---|
55 | [VBoxSF_Install.Services]
|
---|
56 | AddService = VBoxSF, 0x00000002, VBoxSF_ServiceInstallSection
|
---|
57 | DelService = VBoxMRXNP, 0x00000004
|
---|
58 |
|
---|
59 | [VBoxSF_ServiceInstallSection]
|
---|
60 | DisplayName = %VBoxSF_svcdesc%
|
---|
61 | ServiceType = 0x00000001 ; kernel driver
|
---|
62 | StartType = 0x00000003 ; demand start
|
---|
63 | ErrorControl = 0x00000001 ; normal error handling
|
---|
64 | ServiceBinary = %12%\VBoxSF.sys
|
---|
65 |
|
---|
66 | [VBoxMRXNP_Add_Reg]
|
---|
67 | HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, VBoxMRXNP, 0x00000000, %11%\VBoxMRXNP.exe
|
---|
68 |
|
---|
69 | [Strings]
|
---|
70 | ORACLE = "Oracle Corporation"
|
---|
71 | VBoxSF.DeviceDesc = "VirtualBox Device"
|
---|
72 | VBoxSF_svcdesc = "VirtualBox Shared Folders Driver"
|
---|
73 | VBoxMRXNP_svcdesc = "VirtualBox Network Provider Service"
|
---|
74 |
|
---|