-
Notifications
You must be signed in to change notification settings - Fork 0
/
ddproxy.inf
63 lines (50 loc) · 2.21 KB
/
ddproxy.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
;;;
;;; Copyright (c) Microsoft Corporation. All rights reserved
;;;
;;; Abstract:
;;; DatagramData Proxy Callout sample driver install configuration.
;;;
[Version]
Signature = "$Windows NT$"
Class = WFPCALLOUTS
ClassGuid = {57465043-616C-6C6F-7574-5F636C617373}
Provider = %ProviderString%
CatalogFile = DDProxy.cat
DriverVer = 11/24/2014,14.24.55.836
[SourceDisksNames]
1 = %DDProxyDisk%,,,""
[SourceDisksFiles]
DDProxy.sys = 1,,
[DestinationDirs]
DefaultDestDir = 12 ; %WinDir%\System32\Drivers
DDProxy.DriverFiles = 12 ; %WinDir%\System32\Drivers
[DefaultInstall]
OptionDesc = %DDProxyServiceDesc%
CopyFiles = DDProxy.DriverFiles
[DefaultInstall.Services]
AddService = %DDProxyServiceName%,,DDProxy.Service
[DefaultUninstall]
DelFiles = DDProxy.DriverFiles
[DefaultUninstall.Services]
DelService = %DDProxyServiceName%,0x200 ; SPSVCINST_STOPSERVICE
DelReg = DDProxy.DelRegistry
[DDProxy.DriverFiles]
DDProxy.sys,,,0x00000040 ; COPYFLG_OVERWRITE_OLDER_ONLY
[DDProxy.Service]
DisplayName = %DDProxyServiceName%
Description = %DDProxyServiceDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\DDProxy.sys ; %WinDir%\System32\Drivers\DDProxy.sys
AddReg = DDProxy.AddRegistry
[DDProxy.AddRegistry]
HKR,"Parameters","DestinationAddressToIntercept",0x00000000,"10.137.177.119" ; FLG_ADDREG_TYPE_SZ
HKR,"Parameters","NewDestinationAddress",0x00000000,"169.254.65.62" ; FLG_ADDREG_TYPE_SZ
[DDProxy.DelRegistry]
HKR,"Parameters",,,
[Strings]
ProviderString = "TODO-Set-Provider"
DDProxyDisk = "DatagramData Proxy Installation Disk"
DDProxyServiceDesc = "DatagramData Proxy Callout Driver"
DDProxyServiceName = "DDProxy"