INI: Add support for new builds (fix #211)

10.0.15046.0 x86/x64
master
binarymaster 7 years ago
parent acaf2b2f72
commit ee1fa16bf5

@ -325,6 +325,7 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
- 10.0.15025.1000 (Windows 10 RS Pre-Release 170127-1750)
- 10.0.15031.0 (Windows 10 RS2 Release 170204-1546)
- 10.0.15042.0 (Windows 10 RS2 Release 170219-2329)
- 10.0.15046.0 (Windows 10 Build 160101.0800)
#### Confirmed working on:
- Windows Vista Starter (x86 - Service Pack 1 and higher)

@ -1,6 +1,6 @@
[Main]
; Last updated date
Updated=2017-03-01
Updated=2017-03-02
; Address to log file (RDP Wrapper will write it, if exists)
LogFile=\rdpwrap.txt
; Hook SLPolicy API on Windows NT 6.0
@ -2725,6 +2725,36 @@ SLInitHook.x64=1
SLInitOffset.x64=D80C
SLInitFunc.x64=New_CSLQuery_Initialize
[10.0.15046.0]
; Patch CEnforcementCore::GetInstanceOfTSLicense
LocalOnlyPatch.x86=1
LocalOnlyOffset.x86=80BB8
LocalOnlyCode.x86=jmpshort
LocalOnlyPatch.x64=1
LocalOnlyOffset.x64=8E361
LocalOnlyCode.x64=jmpshort
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
SingleUserPatch.x86=1
SingleUserOffset.x86=31E95
SingleUserCode.x86=nop
SingleUserPatch.x64=1
SingleUserOffset.x64=15E14
SingleUserCode.x64=Zero
; Patch CDefPolicy::Query
DefPolicyPatch.x86=1
DefPolicyOffset.x86=38A19
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
DefPolicyPatch.x64=1
DefPolicyOffset.x64=E745
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
; Hook CSLQuery::Initialize
SLInitHook.x86=1
SLInitOffset.x86=9422D
SLInitFunc.x86=New_CSLQuery_Initialize
SLInitHook.x64=1
SLInitOffset.x64=21FFC
SLInitFunc.x64=New_CSLQuery_Initialize
[SLInit]
; Is server
bServerSku=1
@ -3747,3 +3777,22 @@ bRemoteConnAllowed.x64=EA48C
bMultimonAllowed.x64 =EA490
ulMaxDebugSessions.x64=EA494
bFUSEnabled.x64 =EA498
[10.0.15046.0-SLInit]
bInitialized.x86 =C4F18
bServerSku.x86 =C4F1C
lMaxUserSessions.x86 =C4F20
bAppServerAllowed.x86 =C4F24
bRemoteConnAllowed.x86=C4F28
ulMaxDebugSessions.x86=C4F2C
bMultimonAllowed.x86 =C5010
bFUSEnabled.x86 =C5014
bInitialized.x64 =EB468
bRemoteConnAllowed.x64=EB46C
bMultimonAllowed.x64 =EB470
ulMaxDebugSessions.x64=EB474
bFUSEnabled.x64 =EB478
bServerSku.x64 =EB484
lMaxUserSessions.x64 =EB488
bAppServerAllowed.x64 =EB48C

@ -2,7 +2,7 @@
; Do not modify without special knowledge
[Main]
Updated=2017-03-01
Updated=2017-03-02
LogFile=\rdpwrap.txt
SLPolicyHookNT60=1
SLPolicyHookNT61=1
@ -1678,6 +1678,32 @@ SLInitHook.x64=1
SLInitOffset.x64=D80C
SLInitFunc.x64=New_CSLQuery_Initialize
[10.0.15046.0]
LocalOnlyPatch.x86=1
LocalOnlyOffset.x86=80BB8
LocalOnlyCode.x86=jmpshort
LocalOnlyPatch.x64=1
LocalOnlyOffset.x64=8E361
LocalOnlyCode.x64=jmpshort
SingleUserPatch.x86=1
SingleUserOffset.x86=31E95
SingleUserCode.x86=nop
SingleUserPatch.x64=1
SingleUserOffset.x64=15E14
SingleUserCode.x64=Zero
DefPolicyPatch.x86=1
DefPolicyOffset.x86=38A19
DefPolicyCode.x86=CDefPolicy_Query_eax_ecx
DefPolicyPatch.x64=1
DefPolicyOffset.x64=E745
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
SLInitHook.x86=1
SLInitOffset.x86=9422D
SLInitFunc.x86=New_CSLQuery_Initialize
SLInitHook.x64=1
SLInitOffset.x64=21FFC
SLInitFunc.x64=New_CSLQuery_Initialize
[SLInit]
bServerSku=1
bRemoteConnAllowed=1
@ -2676,3 +2702,22 @@ bRemoteConnAllowed.x64=EA48C
bMultimonAllowed.x64 =EA490
ulMaxDebugSessions.x64=EA494
bFUSEnabled.x64 =EA498
[10.0.15046.0-SLInit]
bInitialized.x86 =C4F18
bServerSku.x86 =C4F1C
lMaxUserSessions.x86 =C4F20
bAppServerAllowed.x86 =C4F24
bRemoteConnAllowed.x86=C4F28
ulMaxDebugSessions.x86=C4F2C
bMultimonAllowed.x86 =C5010
bFUSEnabled.x86 =C5014
bInitialized.x64 =EB468
bRemoteConnAllowed.x64=EB46C
bMultimonAllowed.x64 =EB470
ulMaxDebugSessions.x64=EB474
bFUSEnabled.x64 =EB478
bServerSku.x64 =EB484
lMaxUserSessions.x64 =EB488
bAppServerAllowed.x64 =EB48C

@ -107,9 +107,13 @@ Terminal Services supported versions
10.0.15025.1000 (Windows 10 rs_prerelease.170127-1750) [init hook + extended patch]
10.0.15031.0 (Windows 10 rs2_release.170204-1546) [init hook + extended patch]
10.0.15042.0 (Windows 10 rs2_release.170219-2329) [init hook + extended patch]
10.0.15046.0 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
Source code changelog (rdpwrap library):
2017.03.02 :
- added support for termsrv.dll 10.0.15046.0
2017.03.01 :
- added support for termsrv.dll 10.0.15031.0
- added support for termsrv.dll 10.0.15042.0

Loading…
Cancel
Save