mirror of
https://github.com/stascorp/rdpwrap.git
synced 2024-11-09 09:48:21 +00:00
INI: Add support for new builds (#568)
- 6.1.7600.20890 (fix #563) - 6.1.7600.21316 (fix #564) - 6.1.7601.21650 (fix #565) - 6.1.7601.21866 (fix #566) - 6.1.7601.22104 (fix #567) - 6.3.9600.19093 (fix #549) - 10.0.14393.2457 (fix #542) - 10.0.15063.1155 (fix #506)
This commit is contained in:
parent
65b19543f4
commit
b3e1c77321
@ -282,7 +282,12 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
|
||||
- 6.0.6002.23521 (Windows Vista SP2 with KB3003743 LDR)
|
||||
- 6.1.X.X (Windows 7 / Server 2008 R2)
|
||||
- 6.1.7600.16385 (Windows 7)
|
||||
- 6.1.7600.20890 (Windows 7 with KB2479710)
|
||||
- 6.1.7600.21316 (Windows 7 with KB2750090)
|
||||
- 6.1.7601.17514 (Windows 7 SP1)
|
||||
- 6.1.7601.21650 (Windows 7 SP1 with KB2479710)
|
||||
- 6.1.7601.21866 (Windows 7 SP1 with KB2647409)
|
||||
- 6.1.7601.22104 (Windows 7 SP1 with KB2750090)
|
||||
- 6.1.7601.18540 (Windows 7 SP1 with KB2984972 GDR)
|
||||
- 6.1.7601.22750 (Windows 7 SP1 with KB2984972 LDR)
|
||||
- 6.1.7601.18637 (Windows 7 SP1 with KB3003743 GDR)
|
||||
@ -301,6 +306,7 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
|
||||
- 6.3.9600.18692 (Windows 8.1 with KB4022720)
|
||||
- 6.3.9600.18708 (Windows 8.1 with KB4025335)
|
||||
- 6.3.9600.18928 (Windows 8.1 with KB4088876)
|
||||
- 6.3.9600.19093 (Windows 8.1 with KB4343891)
|
||||
- 6.4.9841.0 (Windows 10 Technical Preview)
|
||||
- 6.4.9860.0 (Windows 10 Technical Preview Update 1)
|
||||
- 6.4.9879.0 (Windows 10 Technical Preview Update 2)
|
||||
@ -331,6 +337,7 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
|
||||
- 10.0.14393.0 (Windows 10 RS1 Release 160715-1616)
|
||||
- 10.0.14393.1198 (Windows 10 RS1 Release Sec 170427-1353 with KB4019472)
|
||||
- 10.0.14393.1737 (Windows 10 RS1 Release Inmarket 170914-1249 with KB4041691)
|
||||
- 10.0.14393.2457 (Windows 10 RS1 Release Inmarket 180822-1743 with KB4457131)
|
||||
- 10.0.14901.1000 (Windows 10 RS Pre-Release 160805-1700)
|
||||
- 10.0.14905.1000 (Windows 10 RS Pre-Release 160811-1739)
|
||||
- 10.0.14915.1000 (Windows 10 RS Pre-Release 160826-1902)
|
||||
@ -360,6 +367,7 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
|
||||
- 10.0.15061.0 (Windows 10 Build 160101.0800)
|
||||
- 10.0.15063.0 (Windows 10 Build 160101.0800)
|
||||
- 10.0.15063.296 (Windows 10 Build 160101.0800)
|
||||
- 10.0.15063.1155 (Windows 10 Build 160101.0800)
|
||||
- 10.0.16179.1000 (Windows 10 Build 160101.0800)
|
||||
- 10.0.16184.1001 (Windows 10 Build 160101.0800)
|
||||
- 10.0.16199.1000 (Windows 10 Build 160101.0800)
|
||||
|
@ -1,6 +1,6 @@
|
||||
[Main]
|
||||
; Last updated date
|
||||
Updated=2018-05-16
|
||||
Updated=2018-09-10
|
||||
; Address to log file (RDP Wrapper will write it, if exists)
|
||||
LogFile=\rdpwrap.txt
|
||||
; Hook SLPolicy API on Windows NT 6.0
|
||||
@ -343,6 +343,38 @@ DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17AD2
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7600.20890]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=19E2D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17DF2
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=196FB
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17B0E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7600.21316]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=19E2D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17E3E
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=196FB
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17B5E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.17514]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
; Imagebase: 6F2E0000
|
||||
@ -515,6 +547,54 @@ DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17DC6
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.21650]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180BE
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5A
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.21866]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180BE
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5A
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22104]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180C6
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22843]
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
; Imagebase: 6F2E0000
|
||||
@ -1216,6 +1296,36 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=5D830
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[6.3.9600.19093]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
LocalOnlyPatch.x86=1
|
||||
LocalOnlyOffset.x86=B3958
|
||||
LocalOnlyCode.x86=jmpshort
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8AE4E
|
||||
LocalOnlyCode.x64=nopjmp
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=3F045
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=36BC9
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=3D899
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=45305
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
; Hook CSLQuery::Initialize
|
||||
SLInitHook.x86=1
|
||||
SLInitOffset.x86=18288
|
||||
SLInitFunc.x86=New_CSLQuery_Initialize
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=5D660
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[6.4.9841.0]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
; .text:1009569B call sub_100B7EE5
|
||||
@ -2246,6 +2356,24 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=C930
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.14393.2457]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8D811
|
||||
LocalOnlyCode.x64=jmpshort
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=29CF4
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=1B545
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
; Hook CSLQuery::Initialize
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=C920
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.14901.1000]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
LocalOnlyPatch.x86=1
|
||||
@ -3092,6 +3220,24 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=D1EC
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.15063.1155]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8CB01
|
||||
LocalOnlyCode.x64=jmpshort
|
||||
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=15EA4
|
||||
SingleUserCode.x64=Zero
|
||||
; Patch CDefPolicy::Query
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=FAE5
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
; Hook CSLQuery::Initialize
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=234DC
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.16179.1000]
|
||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||
LocalOnlyPatch.x86=1
|
||||
@ -4248,6 +4394,25 @@ bServerSku.x64 =FA068
|
||||
ulMaxDebugSessions.x64=FA06C
|
||||
bRemoteConnAllowed.x64=FA070
|
||||
|
||||
[6.3.9600.19093-SLInit]
|
||||
bFUSEnabled.x86 =D3068
|
||||
lMaxUserSessions.x86 =D306C
|
||||
bAppServerAllowed.x86 =D3070
|
||||
bInitialized.x86 =D3074
|
||||
bMultimonAllowed.x86 =D3078
|
||||
bServerSku.x86 =D307C
|
||||
ulMaxDebugSessions.x86=D3080
|
||||
bRemoteConnAllowed.x86=D3084
|
||||
|
||||
bFUSEnabled.x64 =FA054
|
||||
lMaxUserSessions.x64 =FA058
|
||||
bAppServerAllowed.x64 =FA05C
|
||||
bInitialized.x64 =FA060
|
||||
bMultimonAllowed.x64 =FA064
|
||||
bServerSku.x64 =FA068
|
||||
ulMaxDebugSessions.x64=FA06C
|
||||
bRemoteConnAllowed.x64=FA070
|
||||
|
||||
[6.4.9841.0-SLInit]
|
||||
bFUSEnabled.x86 =BF9F0
|
||||
lMaxUserSessions.x86 =BF9F4
|
||||
@ -4801,6 +4966,16 @@ bMultimonAllowed.x64 =E8478
|
||||
ulMaxDebugSessions.x64=E847C
|
||||
bFUSEnabled.x64 =E8480
|
||||
|
||||
[10.0.14393.2457-SLInit]
|
||||
bServerSku.x64 =E73D0
|
||||
lMaxUserSessions.x64 =E73D4
|
||||
bAppServerAllowed.x64 =E73D8
|
||||
bInitialized.x64 =E8470
|
||||
bRemoteConnAllowed.x64=E8474
|
||||
bMultimonAllowed.x64 =E8478
|
||||
ulMaxDebugSessions.x64=E847C
|
||||
bFUSEnabled.x64 =E8480
|
||||
|
||||
[10.0.14901.1000-SLInit]
|
||||
bInitialized.x86 =C1F6C
|
||||
bServerSku.x86 =C1F70
|
||||
@ -5334,6 +5509,16 @@ bServerSku.x64 =E9484
|
||||
lMaxUserSessions.x64 =E9488
|
||||
bAppServerAllowed.x64 =E948C
|
||||
|
||||
[10.0.15063.1155-SLInit]
|
||||
bInitialized.x64 =E9468
|
||||
bRemoteConnAllowed.x64=E946C
|
||||
bMultimonAllowed.x64 =E9470
|
||||
ulMaxDebugSessions.x64=E9474
|
||||
bFUSEnabled.x64 =E9478
|
||||
bServerSku.x64 =E9484
|
||||
lMaxUserSessions.x64 =E9488
|
||||
bAppServerAllowed.x64 =E948C
|
||||
|
||||
[10.0.16179.1000-SLInit]
|
||||
bInitialized.x86 =C7F6C
|
||||
bServerSku.x86 =C7F70
|
||||
|
193
res/rdpwrap.ini
193
res/rdpwrap.ini
@ -2,7 +2,7 @@
|
||||
; Do not modify without special knowledge
|
||||
|
||||
[Main]
|
||||
Updated=2018-05-16
|
||||
Updated=2018-09-10
|
||||
LogFile=\rdpwrap.txt
|
||||
SLPolicyHookNT60=1
|
||||
SLPolicyHookNT61=1
|
||||
@ -121,6 +121,34 @@ DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17AD2
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7600.20890]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=19E2D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17DF2
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=196FB
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17B0E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7600.21316]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=19E2D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17E3E
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=196FB
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17B5E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.17514]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
@ -149,20 +177,6 @@ DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17C82
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22750]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A655
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17E8E
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19E21
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17C92
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.18637]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A4DD
|
||||
@ -177,6 +191,62 @@ DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17DC6
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.21650]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180BE
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5A
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.21866]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180BE
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5A
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22104]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A49D
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=180C6
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19D53
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17D5E
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22750]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A655
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=17E8E
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=19E21
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_esi
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=17C92
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rdi
|
||||
|
||||
[6.1.7601.22843]
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=1A655
|
||||
@ -507,6 +577,32 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=5D830
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[6.3.9600.19093]
|
||||
LocalOnlyPatch.x86=1
|
||||
LocalOnlyOffset.x86=B3958
|
||||
LocalOnlyCode.x86=jmpshort
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8AE4E
|
||||
LocalOnlyCode.x64=nopjmp
|
||||
SingleUserPatch.x86=1
|
||||
SingleUserOffset.x86=3F045
|
||||
SingleUserCode.x86=nop
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=36BC9
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x86=1
|
||||
DefPolicyOffset.x86=3D899
|
||||
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=45305
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
SLInitHook.x86=1
|
||||
SLInitOffset.x86=18288
|
||||
SLInitFunc.x86=New_CSLQuery_Initialize
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=5D660
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[6.4.9841.0]
|
||||
LocalOnlyPatch.x86=1
|
||||
LocalOnlyOffset.x86=956A8
|
||||
@ -1263,6 +1359,20 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=C930
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.14393.2457]
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8D811
|
||||
LocalOnlyCode.x64=jmpshort
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=29CF4
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=1B545
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=C920
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.14901.1000]
|
||||
LocalOnlyPatch.x86=1
|
||||
LocalOnlyOffset.x86=A6038
|
||||
@ -1993,6 +2103,20 @@ SLInitHook.x64=1
|
||||
SLInitOffset.x64=D1EC
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.15063.1155]
|
||||
LocalOnlyPatch.x64=1
|
||||
LocalOnlyOffset.x64=8CB01
|
||||
LocalOnlyCode.x64=jmpshort
|
||||
SingleUserPatch.x64=1
|
||||
SingleUserOffset.x64=15EA4
|
||||
SingleUserCode.x64=Zero
|
||||
DefPolicyPatch.x64=1
|
||||
DefPolicyOffset.x64=FAE5
|
||||
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||
SLInitHook.x64=1
|
||||
SLInitOffset.x64=234DC
|
||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||
|
||||
[10.0.16179.1000]
|
||||
LocalOnlyPatch.x86=1
|
||||
LocalOnlyOffset.x86=AA568
|
||||
@ -2994,6 +3118,25 @@ bServerSku.x64 =FA068
|
||||
ulMaxDebugSessions.x64=FA06C
|
||||
bRemoteConnAllowed.x64=FA070
|
||||
|
||||
[6.3.9600.19093-SLInit]
|
||||
bFUSEnabled.x86 =D3068
|
||||
lMaxUserSessions.x86 =D306C
|
||||
bAppServerAllowed.x86 =D3070
|
||||
bInitialized.x86 =D3074
|
||||
bMultimonAllowed.x86 =D3078
|
||||
bServerSku.x86 =D307C
|
||||
ulMaxDebugSessions.x86=D3080
|
||||
bRemoteConnAllowed.x86=D3084
|
||||
|
||||
bFUSEnabled.x64 =FA054
|
||||
lMaxUserSessions.x64 =FA058
|
||||
bAppServerAllowed.x64 =FA05C
|
||||
bInitialized.x64 =FA060
|
||||
bMultimonAllowed.x64 =FA064
|
||||
bServerSku.x64 =FA068
|
||||
ulMaxDebugSessions.x64=FA06C
|
||||
bRemoteConnAllowed.x64=FA070
|
||||
|
||||
[6.4.9841.0-SLInit]
|
||||
bFUSEnabled.x86 =BF9F0
|
||||
lMaxUserSessions.x86 =BF9F4
|
||||
@ -3546,6 +3689,16 @@ bMultimonAllowed.x64 =E8478
|
||||
ulMaxDebugSessions.x64=E847C
|
||||
bFUSEnabled.x64 =E8480
|
||||
|
||||
[10.0.14393.2457-SLInit]
|
||||
bServerSku.x64 =E73D0
|
||||
lMaxUserSessions.x64 =E73D4
|
||||
bAppServerAllowed.x64 =E73D8
|
||||
bInitialized.x64 =E8470
|
||||
bRemoteConnAllowed.x64=E8474
|
||||
bMultimonAllowed.x64 =E8478
|
||||
ulMaxDebugSessions.x64=E847C
|
||||
bFUSEnabled.x64 =E8480
|
||||
|
||||
[10.0.14901.1000-SLInit]
|
||||
bInitialized.x86 =C1F6C
|
||||
bServerSku.x86 =C1F70
|
||||
@ -4079,6 +4232,16 @@ bServerSku.x64 =E9484
|
||||
lMaxUserSessions.x64 =E9488
|
||||
bAppServerAllowed.x64 =E948C
|
||||
|
||||
[10.0.15063.1155-SLInit]
|
||||
bInitialized.x64 =E9468
|
||||
bRemoteConnAllowed.x64=E946C
|
||||
bMultimonAllowed.x64 =E9470
|
||||
ulMaxDebugSessions.x64=E9474
|
||||
bFUSEnabled.x64 =E9478
|
||||
bServerSku.x64 =E9484
|
||||
lMaxUserSessions.x64 =E9488
|
||||
bAppServerAllowed.x64 =E948C
|
||||
|
||||
[10.0.16179.1000-SLInit]
|
||||
bInitialized.x86 =C7F6C
|
||||
bServerSku.x86 =C7F70
|
||||
|
@ -26,14 +26,14 @@ Terminal Services supported versions
|
||||
6.1.7600.20661 (Windows 7 with KB951422) [todo]
|
||||
6.1.7600.21085 (Windows 7 with KB951422 v2) [todo]
|
||||
6.1.7600.20621 (Windows 7 with KB979470) [todo]
|
||||
6.1.7600.20890 (Windows 7 with KB2479710) [todo]
|
||||
6.1.7600.21316 (Windows 7 with KB2750090) [todo]
|
||||
6.1.7600.20890 (Windows 7 with KB2479710) [policy hook + extended patch]
|
||||
6.1.7600.21316 (Windows 7 with KB2750090) [policy hook + extended patch]
|
||||
6.1.7600.21420 (Windows 7 with KB2800789) [todo]
|
||||
6.1.7601.17514 (Windows 7 SP1) [policy hook + extended patch]
|
||||
6.1.7601.21855 (Windows 7 SP1 with KB951422 v2) [todo]
|
||||
6.1.7601.21650 (Windows 7 SP1 with KB2479710) [todo]
|
||||
6.1.7601.21866 (Windows 7 SP1 with KB2647409) [todo]
|
||||
6.1.7601.22104 (Windows 7 SP1 with KB2750090) [todo]
|
||||
6.1.7601.21650 (Windows 7 SP1 with KB2479710) [policy hook + extended patch]
|
||||
6.1.7601.21866 (Windows 7 SP1 with KB2647409) [policy hook + extended patch]
|
||||
6.1.7601.22104 (Windows 7 SP1 with KB2750090) [policy hook + extended patch]
|
||||
6.1.7601.22213 (Windows 7 SP1 with KB2800789) [todo]
|
||||
6.1.7601.22476 (Windows 7 SP1 with KB2870165) [todo]
|
||||
6.1.7601.22435 (Windows 7 SP1 with KB2878424) [todo]
|
||||
@ -56,6 +56,7 @@ Terminal Services supported versions
|
||||
6.3.9600.18692 (Windows 8.1 with KB4022720) [init hook + extended patch]
|
||||
6.3.9600.18708 (Windows 8.1 with KB4025335) [init hook + extended patch]
|
||||
6.3.9600.18928 (Windows 8.1 with KB4088876) [init hook + extended patch]
|
||||
6.3.9600.19093 (Windows 8.1 with KB4343891) [init hook + extended patch]
|
||||
6.4.9841.0 (Windows 10 Technical Preview) [init hook + extended patch]
|
||||
6.4.9860.0 (Windows 10 Technical Preview UP1) [init hook + extended patch]
|
||||
6.4.9879.0 (Windows 10 Technical Preview UP2) [init hook + extended patch]
|
||||
@ -91,6 +92,7 @@ Terminal Services supported versions
|
||||
10.0.14393.0 (Windows 10 rs1_release.160715-1616) [init hook + extended patch]
|
||||
10.0.14393.1198 (Windows 10 rs1_release_sec.170427-1353) [init hook + extended patch]
|
||||
10.0.14393.1737 (Windows 10 rs1_release_inmarket.170914-1249) [init hook + extended patch]
|
||||
10.0.14393.2457 (Windows 10 rs1_release_inmarket.180822-1743) [init hook + extended patch]
|
||||
10.0.14901.1000 (Windows 10 rs_prerelease.160805-1700) [init hook + extended patch]
|
||||
10.0.14905.1000 (Windows 10 rs_prerelease.160811-1739) [init hook + extended patch]
|
||||
10.0.14915.1000 (Windows 10 rs_prerelease.160826-1902) [init hook + extended patch]
|
||||
@ -121,6 +123,7 @@ Terminal Services supported versions
|
||||
10.0.15063.0 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
10.0.15063.296 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
10.0.15063.994 (Windows 10 WinBuild.160101.0800) [todo]
|
||||
10.0.15063.1155 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
10.0.16179.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
10.0.16184.1001 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
10.0.16199.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||
@ -160,6 +163,16 @@ Terminal Services supported versions
|
||||
|
||||
Source code changelog (rdpwrap library):
|
||||
|
||||
2018.09.10 :
|
||||
- added support for termsrv.dll 6.1.7600.20890
|
||||
- added support for termsrv.dll 6.1.7600.21316
|
||||
- added support for termsrv.dll 6.1.7601.21650
|
||||
- added support for termsrv.dll 6.1.7601.21866
|
||||
- added support for termsrv.dll 6.1.7601.22104
|
||||
- added support for termsrv.dll 6.3.9600.19093
|
||||
- added support for termsrv.dll 10.0.14393.2457 x64
|
||||
- added support for termsrv.dll 10.0.15063.1155 x64
|
||||
|
||||
2018.05.16 :
|
||||
- added support for termsrv.dll 10.0.17115.1
|
||||
- added support for termsrv.dll 10.0.17128.1
|
||||
|
Loading…
Reference in New Issue
Block a user