-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegFilter.inf
More file actions
74 lines (52 loc) · 1.67 KB
/
Copy pathRegFilter.inf
File metadata and controls
74 lines (52 loc) · 1.67 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
63
64
65
66
67
68
69
70
71
72
73
74
;
; RegFilter.inf
; Registry Protection Driver - Primitive Driver INF
;
[Version]
Signature="$WINDOWS NT$"
Class=System
ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318}
Provider=%ProviderName%
CatalogFile=RegFilter.cat
DriverVer=07/12/2026,1.0.0.0
PnpLockdown=1
[SourceDisksNames]
1 = %DiskName%,,,
[SourceDisksFiles]
RegFilter.sys = 1,,
;====================================================
; Destination Directories
;====================================================
[DestinationDirs]
DefaultDestDir = 13
RegFilter.DriverFiles = 13
;====================================================
; Architecture-decorated DefaultInstall (Primitive Driver)
;====================================================
[DefaultInstall.NTamd64]
CopyFiles = RegFilter.DriverFiles
[DefaultInstall.NTamd64.Services]
AddService = RegFilter,,RegFilter.Service
[DefaultInstall.NTarm64]
CopyFiles = RegFilter.DriverFiles
[DefaultInstall.NTarm64.Services]
AddService = RegFilter,,RegFilter.Service
; File Copy Section
[RegFilter.DriverFiles]
RegFilter.sys
; Service Installation
[RegFilter.Service]
DisplayName = %ServiceName%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 0 ; SERVICE_BOOT_START
ErrorControl = 3 ; SERVICE_ERROR_CRITICAL
ServiceBinary = %13%\RegFilter.sys
LoadOrderGroup = "FSFilter Activity Monitor"
AddReg = RegFilter.ServiceAddReg
[RegFilter.ServiceAddReg]
HKR,"Parameters","Altitude",0x00000000,"327999"
; Strings
[Strings]
ProviderName = "SIFPS"
ServiceName = "RegFilter Registry Protection Driver"
DiskName = "RegFilter Installation Disk"