blob: dd32c4e67a10c0b4a3ef567ba08492a68937c749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
; disk.inf
;
; Installation inf for the Disk drive adapter.
;
; SAMPLE INF File for Class Driver
; FOR DDK - Driver Development Kit
;
; (c) Copyright 1999 Microsoft Corp.
;
[Version]
Signature="$Windows NT$"
Provider=%ProviderName%
ClassGUID={4d36e967-e325-11ce-bfc1-08002be10318}
Class=DiskDrive
DriverVer=08/27/1999,5.2.1425.0
CatalogFile=diskdev.cat ; Supply your own catalog file here.
PnpLockdown=1
[DestinationDirs]
DefaultDestDir = 12
;
; Driver information
;
[Manufacturer]
%MfgName% = Standard.Mfg, NTamd64
[Standard.Mfg.NTamd64]
%GenDisk.DeviceDesc% = disk, GenDisk
%GenOptical.DeviceDesc% = disk, GenOptical
;
; General installation section
;
[disk.NT]
CopyFiles=disk.CopyFiles
;
; File sections
;
[disk.CopyFiles]
disk.sys
;
; Service Installation
;
[disk.NT.Services]
AddService = disk, 0x00000002 , disk_Service_Inst
[disk_Service_Inst]
DisplayName = %disk.SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 0 ; SERVICE_SYSTEM_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
LoadOrderGroup = SCSI Class
ServiceBinary = %12%\disk.sys
;
; Source file information
;
[SourceDisksNames.amd64]
1 = %DiskId1%,,,\amd64
[SourceDisksFiles]
disk.sys = 1,,
[Strings]
;
; Non-Localizable Strings
;
REG_SZ = 0x00000000
REG_MULTI_SZ = 0x00010000
REG_EXPAND_SZ = 0x00020000
REG_BINARY = 0x00000001
REG_DWORD = 0x00010001
;
; Localizable Strings
;
ProviderName = "TODO-Set-Provider"
MfgName = "TODO-Set-Manufacturer"
GenDisk.DeviceDesc = "Disk drive"
GenOptical.DeviceDesc = "Optical disk drive"
DiskId1 = "Install disk"
disk.SvcDesc="Disk Drive"
|