-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSimpleAntiCheat.inf
More file actions
49 lines (38 loc) · 1.21 KB
/
SimpleAntiCheat.inf
File metadata and controls
49 lines (38 loc) · 1.21 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
;
; SimpleAntiCheat.inf
;
[Version]
Signature="$WINDOWS NT$"
Class=System
ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
Provider=%ManufacturerName%
DriverVer=1.0.0.0
CatalogFile=SimpleAntiCheat.cat
PnpLockdown=1
[DestinationDirs]
DefaultDestDir = 13 ; Have used %12% (System32/Drivers) in the past but it causes issues with driver signing now. DriverStore is recommended way
[SourceDisksNames]
1 = %DiskName%,,,""
[SourceDisksFiles]
SimpleAntiCheat.sys = 1
[Manufacturer]
%ManufacturerName%=Standard,NT$ARCH$.10.0...16299
[Standard.NT$ARCH$.10.0...16299]
%DeviceDesc% = SimpleAntiCheat_Install, Root\SimpleAntiCheat
[SimpleAntiCheat_Install]
CopyFiles = SimpleAntiCheat.Copy
[SimpleAntiCheat_Install.Services]
AddService = SimpleAntiCheat, 2, SimpleAntiCheat_Service
[SimpleAntiCheat.Copy]
SimpleAntiCheat.sys
[SimpleAntiCheat_Service]
DisplayName = %ServiceDisplayName%
ServiceType = 1 ; KERNEL_DRIVER
StartType = 0 ; BOOT_START (loads very early) or 1 = SYSTEM_START
ErrorControl = 1
ServiceBinary = %13%\SimpleAntiCheat.sys
[Strings]
ManufacturerName="Chuccle"
DiskName="SimpleAntiCheat Source Disk"
DeviceDesc="SimpleAntiCheat Device"
ServiceDisplayName="SimpleAntiCheat Service"