-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNativeEXE_1.inf
More file actions
62 lines (48 loc) · 1.71 KB
/
NativeEXE_1.inf
File metadata and controls
62 lines (48 loc) · 1.71 KB
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
;
; NativeEXE_1.inf
;
[Version]
Signature = "$WINDOWS NT$"
Class = System ; TODO: specify appropriate Class
ClassGuid = {4d36e97d-e325-11ce-bfc1-08002be10318} ; TODO: specify appropriate ClassGuid
Provider = %ManufacturerName%
CatalogFile = NativeEXE_1.cat
DriverVer = ; TODO: set DriverVer in stampinf property pages
PnpLockdown = 1
[DestinationDirs]
DefaultDestDir = 13
[SourceDisksNames]
1 = %DiskName%,,,""
[SourceDisksFiles]
NativeEXE_1.sys = 1,,
;*****************************************
; Install Section
;*****************************************
[Manufacturer]
%ManufacturerName% = Standard,NT$ARCH$.10.0...16299 ; %13% support introduced in build 16299
[Standard.NT$ARCH$.10.0...16299]
%NativeEXE_1.DeviceDesc% = NativeEXE_1_Device, Root\NativeEXE_1 ; TODO: edit hw-id
[NativeEXE_1_Device.NT]
CopyFiles = File_Copy
[File_Copy]
NativeEXE_1.sys
;-------------- Service installation
[NativeEXE_1_Device.NT.Services]
AddService = NativeEXE_1,%SPSVCINST_ASSOCSERVICE%, NativeEXE_1_Service_Inst
; -------------- NativeEXE_1 driver install sections
[NativeEXE_1_Service_Inst]
DisplayName = %NativeEXE_1.SVCDESC%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %13%\NativeEXE_1.sys
[NativeEXE_1_Device.NT.Wdf]
KmdfService = NativeEXE_1, NativeEXE_1_wdfsect
[NativeEXE_1_wdfsect]
KmdfLibraryVersion = $KMDFVERSION$
[Strings]
SPSVCINST_ASSOCSERVICE = 0x00000002
ManufacturerName = "<Your manufacturer name>" ;TODO: Replace with your manufacturer name
DiskName = "NativeEXE_1 Installation Disk"
NativeEXE_1.DeviceDesc = "NativeEXE_1 Device"
NativeEXE_1.SVCDESC = "NativeEXE_1 Service"