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
|
;/*++
;
;Copyright (c) Microsoft Corporation. All rights reserved.
;
;Module Name:
;
; SIMPLE.INF
;
;Abstract:
; INF file for installing toaster device drivers. This is an
; extremely simple form of INF. This one uses one of the system
; defined icon for its class instead of one the provided by the
; toaster class installer DLL. To test this INF, make sure
; the toaster class is not previously installed on the system.
; If it is installed, you must remove the existing Toaster class key
; (HKLM\System\CurrentControlSet\Control\Class\{B85B7C50-6A01-11d2-B841-00C04FAD5171})
; from the registry. Otherwise the setup ignores the entire
; [ClassInstall32] section if it finds the toaster class guid
; in the registy.
;
; Important:
; This INF depends on features for the Driver Store DIRIDs which are available starting Windows 10 1709
;
;--*/
[Version]
Signature="$WINDOWS NT$"
Class=TOASTER
ClassGuid={B85B7C50-6A01-11d2-B841-00C04FAD5171}
Provider=%ProviderName%
DriverVer=06/16/1999,5.0.2064.0
CatalogFile=KmdfSamples.cat
PnpLockdown=1
[DestinationDirs]
DefaultDestDir = 13
[SourceDisksNames]
1 = %DiskId1%,,,""
[SourceDisksFiles]
wdfsimple.sys = 1,,
; ================= Class section =====================
[ClassInstall32]
Addreg=ToasterClassReg
[ToasterClassReg]
HKR,,,0,%ClassName%
HKR,,Icon,,-5
HKR,,DeviceCharacteristics,0x10001,0x100 ;Use same security checks on relative opens
HKR,,Security,,"D:P(A;;GA;;;SY)(A;;GA;;;BA)(A;;GA;;;LS)" ;Allow generic all access to system, built-in Admin, and Local System.
;This one overrides the security set by the driver
;*****************************************
; Toaster Device Install Section
;*****************************************
[Manufacturer]
%StdMfg%=Standard,NT$ARCH$.10.0...16299
[Standard.NT$ARCH$.10.0...16299]
%WdfSimpleDevice.DeviceDesc%=Toaster_Device, {b85b7c50-6a01-11d2-b841-00c04fad5171}\MsToaster
[Toaster_Device.NT]
CopyFiles=Toaster_Device.NT.Copy
[Toaster_Device.NT.Copy]
wdfsimple.sys
;-------------- Service installation
[Toaster_Device.NT.Services]
AddService = wdfsimple, %SPSVCINST_ASSOCSERVICE%, wdfsimple_Service_Inst
[wdfsimple_Service_Inst]
DisplayName = %WDFSIMPLE.SVCDESC%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %13%\wdfsimple.sys
[Toaster_Device.NT.Wdf]
KmdfService = wdfsimple, wdfsimple_wdfsect
[wdfsimple_wdfsect]
KmdfLibraryVersion = $KMDFVERSION$
[Strings]
SPSVCINST_ASSOCSERVICE = 0x00000002
ProviderName = "TODO-Set-Provider"
StdMfg = "(Standard system devices)"
ClassName = "Toaster"
DiskId1 = "Toaster Device Installation Disk #1"
WdfSimpleDevice.DeviceDesc = "WDF Simple Toaster (No Class Installer)"
WDFSIMPLE.SVCDESC = "WDF Simple Toaster Device Driver"
|