-
Notifications
You must be signed in to change notification settings - Fork 6
/
FileMonitorInstallation.inf
91 lines (72 loc) · 2.31 KB
/
FileMonitorInstallation.inf
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
;;;
;;; Minispy
;;;
;;;
;;; Copyright (c) 2001, Microsoft Corporation
;;;
[Version]
Signature = "$Windows NT$"
Class = "ActivityMonitor" ;This is determined by the work this filter driver does
ClassGuid = {b86dff51-a31e-4bac-b3cf-e8cfe75c9fc2} ;This value is determined by the Class
Provider = %Msft%
DriverVer = 10/09/2007,1.0.0.0
[DestinationDirs]
DefaultDestDir = 12
Capture.DriverFiles = 12 ;%windir%\system32\drivers
;;
;; Default install sections
;;
[DefaultInstall]
OptionDesc = %ServiceDescription%
CopyFiles = Capture.DriverFiles
[DefaultInstall.Services]
AddService = %ServiceName%,,Capture.Service
;;
;; Default uninstall sections
;;
[DefaultUninstall]
DelFiles = Capture.DriverFiles
DelReg = Capture.DelRegistry
[DefaultUninstall.Services]
DelService = %ServiceName%,0x200 ;Ensure service is stopped before deleting
;
; Services Section
;
[Capture.Service]
DisplayName = %ServiceName%
Description = %ServiceDescription%
ServiceBinary = %12%\%DriverName%.sys ;%windir%\system32\drivers\
Dependencies = FltMgr
ServiceType = 2 ;SERVICE_FILE_SYSTEM_DRIVER
StartType = 3 ;SERVICE_DEMAND_START
ErrorControl = 1 ;SERVICE_ERROR_NORMAL
LoadOrderGroup = "FSFilter Activity Monitor"
AddReg = Capture.AddRegistry
;
; Registry Modifications
;
[Capture.AddRegistry]
HKR,"Instances","DefaultInstance",0x00000000,%DefaultInstance%
HKR,"Instances\"%Instance1.Name%,"Altitude",0x00000000,%Instance1.Altitude%
HKR,"Instances\"%Instance1.Name%,"Flags",0x00010001,%Instance1.Flags%
[Capture.DelRegistry]
HKLM,"System\CurrentControlSet\Services\CaptureFileMonitor"
;
; Copy Files
;
[Capture.DriverFiles]
%DriverName%.sys
;;
;; String Section
;;
[Strings]
Msft = "Microsoft Corporation"
ServiceDescription = "Capture Kernel Driver"
ServiceName = "CaptureFileMonitor"
DriverName = "CaptureFileMonitor"
UserAppName = "Capture"
;Instances specific information.
DefaultInstance = "Capture - Top Instance"
Instance1.Name = "Capture - Top Instance"
Instance1.Altitude = "385000"
Instance1.Flags = 0x0 ; Suppress automatic attachments