blob: e3ec3563d70201029b38b136764928782989c5fd (
plain)
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
|
;;;
;;; Copyright (c) Microsoft Corporation. All rights reserved
;;;
;;; Abstract:
;;; Monitor Callout sample driver install configuration.
;;;
[Version]
Signature = "$Windows NT$"
Class = WFPCALLOUTS
ClassGuid = {57465043-616C-6C6F-7574-5F636C617373}
Provider = %ProviderString%
CatalogFile = MSNMntr.cat
DriverVer = 11/24/2014,14.24.55.836
PnpLockdown = 1
[SourceDisksNames]
1 = %MSNMntrDisk%,,,""
[SourceDisksFiles]
MSNMntr.sys = 1,,
[DestinationDirs]
MSNMntr.DriverFiles = 12 ; %WinDir%\System32\Drivers
[DefaultInstall.NT$ARCH$]
OptionDesc = %MSNMntrServiceDesc%
CopyFiles = MSNMntr.DriverFiles
[DefaultInstall.NT$ARCH$.Services]
AddService = %MSNMntrServiceName%,,MSNMntr.Service
[MSNMntr.DriverFiles]
MSNMntr.sys,,,0x00000040 ; COPYFLG_OVERWRITE_OLDER_ONLY
[MSNMntr.Service]
DisplayName = %MSNMntrServiceName%
Description = %MSNMntrServiceDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\MSNMntr.sys ; %WinDir%\System32\Drivers\MSNMntr.sys
[Strings]
ProviderString = "TODO-Set-Provider"
MSNMntrDisk = "Monitor Installation Disk"
MSNMntrServiceDesc = "Monitor Callout Driver"
MSNMntrServiceName = "MSNMntr"
|