mirror of
https://github.com/stascorp/rdpwrap.git
synced 2024-11-09 17:58:20 +00:00
INI: Add support for new builds (relates to #194)
10.0.14997.1001 (x64 only)
This commit is contained in:
parent
890006de99
commit
85f2b39568
@ -329,6 +329,7 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
|
|||||||
- 10.0.14965.1001 (Windows 10 RS Pre-Release 161104-1700)
|
- 10.0.14965.1001 (Windows 10 RS Pre-Release 161104-1700)
|
||||||
- 10.0.14971.1000 (Windows 10 RS Pre-Release 161111-1700)
|
- 10.0.14971.1000 (Windows 10 RS Pre-Release 161111-1700)
|
||||||
- 10.0.14986.1000 (Windows 10 Build 160101.0800)
|
- 10.0.14986.1000 (Windows 10 Build 160101.0800)
|
||||||
|
- 10.0.14997.1001 (Windows 10 Build 160101.0800)
|
||||||
- 10.0.15002.1001 (Windows 10 Build 160101.0800)
|
- 10.0.15002.1001 (Windows 10 Build 160101.0800)
|
||||||
- 10.0.15007.1000 (Windows 10 Build 160101.0800)
|
- 10.0.15007.1000 (Windows 10 Build 160101.0800)
|
||||||
- 10.0.15014.1000 (Windows 10 Build 160101.0800)
|
- 10.0.15014.1000 (Windows 10 Build 160101.0800)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Main]
|
[Main]
|
||||||
; Last updated date
|
; Last updated date
|
||||||
Updated=2017-05-12
|
Updated=2017-05-17
|
||||||
; Address to log file (RDP Wrapper will write it, if exists)
|
; Address to log file (RDP Wrapper will write it, if exists)
|
||||||
LogFile=\rdpwrap.txt
|
LogFile=\rdpwrap.txt
|
||||||
; Hook SLPolicy API on Windows NT 6.0
|
; Hook SLPolicy API on Windows NT 6.0
|
||||||
@ -2545,6 +2545,24 @@ SLInitHook.x64=1
|
|||||||
SLInitOffset.x64=26140
|
SLInitOffset.x64=26140
|
||||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||||
|
|
||||||
|
[10.0.14997.1001]
|
||||||
|
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||||
|
LocalOnlyPatch.x64=1
|
||||||
|
LocalOnlyOffset.x64=931EB
|
||||||
|
LocalOnlyCode.x64=jmpshort
|
||||||
|
; Patch CSessionArbitrationHelper::IsSingleSessionPerUserEnabled
|
||||||
|
SingleUserPatch.x64=1
|
||||||
|
SingleUserOffset.x64=274ED
|
||||||
|
SingleUserCode.x64=Zero
|
||||||
|
; Patch CDefPolicy::Query
|
||||||
|
DefPolicyPatch.x64=1
|
||||||
|
DefPolicyOffset.x64=1D95E
|
||||||
|
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||||
|
; Hook CSLQuery::Initialize
|
||||||
|
SLInitHook.x64=1
|
||||||
|
SLInitOffset.x64=E000
|
||||||
|
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||||
|
|
||||||
[10.0.15002.1001]
|
[10.0.15002.1001]
|
||||||
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
; Patch CEnforcementCore::GetInstanceOfTSLicense
|
||||||
LocalOnlyPatch.x86=1
|
LocalOnlyPatch.x86=1
|
||||||
@ -3892,6 +3910,16 @@ bMultimonAllowed.x64 =EE478
|
|||||||
ulMaxDebugSessions.x64=EE47C
|
ulMaxDebugSessions.x64=EE47C
|
||||||
bFUSEnabled.x64 =EE480
|
bFUSEnabled.x64 =EE480
|
||||||
|
|
||||||
|
[10.0.14997.1001-SLInit]
|
||||||
|
bServerSku.x64 =F0408
|
||||||
|
lMaxUserSessions.x64 =F040C
|
||||||
|
bAppServerAllowed.x64 =F0410
|
||||||
|
bInitialized.x64 =F0480
|
||||||
|
bRemoteConnAllowed.x64=F0484
|
||||||
|
bMultimonAllowed.x64 =F0488
|
||||||
|
ulMaxDebugSessions.x64=F048C
|
||||||
|
bFUSEnabled.x64 =F0490
|
||||||
|
|
||||||
[10.0.15002.1001-SLInit]
|
[10.0.15002.1001-SLInit]
|
||||||
bInitialized.x86 =C6F74
|
bInitialized.x86 =C6F74
|
||||||
bServerSku.x86 =C6F78
|
bServerSku.x86 =C6F78
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
; Do not modify without special knowledge
|
; Do not modify without special knowledge
|
||||||
|
|
||||||
[Main]
|
[Main]
|
||||||
Updated=2017-05-12
|
Updated=2017-05-17
|
||||||
LogFile=\rdpwrap.txt
|
LogFile=\rdpwrap.txt
|
||||||
SLPolicyHookNT60=1
|
SLPolicyHookNT60=1
|
||||||
SLPolicyHookNT61=1
|
SLPolicyHookNT61=1
|
||||||
@ -1522,6 +1522,20 @@ SLInitHook.x64=1
|
|||||||
SLInitOffset.x64=26140
|
SLInitOffset.x64=26140
|
||||||
SLInitFunc.x64=New_CSLQuery_Initialize
|
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||||
|
|
||||||
|
[10.0.14997.1001]
|
||||||
|
LocalOnlyPatch.x64=1
|
||||||
|
LocalOnlyOffset.x64=931EB
|
||||||
|
LocalOnlyCode.x64=jmpshort
|
||||||
|
SingleUserPatch.x64=1
|
||||||
|
SingleUserOffset.x64=274ED
|
||||||
|
SingleUserCode.x64=Zero
|
||||||
|
DefPolicyPatch.x64=1
|
||||||
|
DefPolicyOffset.x64=1D95E
|
||||||
|
DefPolicyCode.x64=CDefPolicy_Query_eax_rcx
|
||||||
|
SLInitHook.x64=1
|
||||||
|
SLInitOffset.x64=E000
|
||||||
|
SLInitFunc.x64=New_CSLQuery_Initialize
|
||||||
|
|
||||||
[10.0.15002.1001]
|
[10.0.15002.1001]
|
||||||
LocalOnlyPatch.x86=1
|
LocalOnlyPatch.x86=1
|
||||||
LocalOnlyOffset.x86=A9698
|
LocalOnlyOffset.x86=A9698
|
||||||
@ -2785,6 +2799,16 @@ bMultimonAllowed.x64 =EE478
|
|||||||
ulMaxDebugSessions.x64=EE47C
|
ulMaxDebugSessions.x64=EE47C
|
||||||
bFUSEnabled.x64 =EE480
|
bFUSEnabled.x64 =EE480
|
||||||
|
|
||||||
|
[10.0.14997.1001-SLInit]
|
||||||
|
bServerSku.x64 =F0408
|
||||||
|
lMaxUserSessions.x64 =F040C
|
||||||
|
bAppServerAllowed.x64 =F0410
|
||||||
|
bInitialized.x64 =F0480
|
||||||
|
bRemoteConnAllowed.x64=F0484
|
||||||
|
bMultimonAllowed.x64 =F0488
|
||||||
|
ulMaxDebugSessions.x64=F048C
|
||||||
|
bFUSEnabled.x64 =F0490
|
||||||
|
|
||||||
[10.0.15002.1001-SLInit]
|
[10.0.15002.1001-SLInit]
|
||||||
bInitialized.x86 =C6F74
|
bInitialized.x86 =C6F74
|
||||||
bServerSku.x86 =C6F78
|
bServerSku.x86 =C6F78
|
||||||
|
@ -101,6 +101,7 @@ Terminal Services supported versions
|
|||||||
10.0.14965.1001 (Windows 10 rs_prerelease.161104-1700) [init hook + extended patch]
|
10.0.14965.1001 (Windows 10 rs_prerelease.161104-1700) [init hook + extended patch]
|
||||||
10.0.14971.1000 (Windows 10 rs_prerelease.161111-1700) [init hook + extended patch]
|
10.0.14971.1000 (Windows 10 rs_prerelease.161111-1700) [init hook + extended patch]
|
||||||
10.0.14986.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
10.0.14986.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||||
|
10.0.14997.1001 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||||
10.0.15002.1001 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
10.0.15002.1001 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||||
10.0.15007.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
10.0.15007.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||||
10.0.15014.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
10.0.15014.1000 (Windows 10 WinBuild.160101.0800) [init hook + extended patch]
|
||||||
@ -119,6 +120,9 @@ Terminal Services supported versions
|
|||||||
|
|
||||||
Source code changelog (rdpwrap library):
|
Source code changelog (rdpwrap library):
|
||||||
|
|
||||||
|
2017.05.17 :
|
||||||
|
- added support for termsrv.dll 10.0.14997.1001 x64
|
||||||
|
|
||||||
2017.05.12 :
|
2017.05.12 :
|
||||||
- added support for termsrv.dll 10.0.14393.1198 x86
|
- added support for termsrv.dll 10.0.14393.1198 x86
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user