Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stascorp/rdpwrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbinarymaster <x86corez@gmail.com>2017-05-17 15:01:07 +0300
committerbinarymaster <x86corez@gmail.com>2017-05-17 15:01:07 +0300
commit85f2b39568df0425c19a96b9a83d07f75c995263 (patch)
tree23adab13e650e6c93bc847498b3db41da21d6ad3
parent890006de99625c194aa48dfd27c5c9a53bdb656e (diff)
INI: Add support for new builds (relates to #194)
10.0.14997.1001 (x64 only)
-rw-r--r--README.md1
-rw-r--r--res/rdpwrap-ini-kb.txt30
-rw-r--r--res/rdpwrap.ini26
-rw-r--r--technical.txt4
4 files changed, 59 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0717590..bf5ec16 100644
--- a/README.md
+++ b/README.md
@@ -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.14971.1000 (Windows 10 RS Pre-Release 161111-1700)
- 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.15007.1000 (Windows 10 Build 160101.0800)
- 10.0.15014.1000 (Windows 10 Build 160101.0800)
diff --git a/res/rdpwrap-ini-kb.txt b/res/rdpwrap-ini-kb.txt
index eddd69c..005db48 100644
--- a/res/rdpwrap-ini-kb.txt
+++ b/res/rdpwrap-ini-kb.txt
@@ -1,6 +1,6 @@
[Main]
; Last updated date
-Updated=2017-05-12
+Updated=2017-05-17
; Address to log file (RDP Wrapper will write it, if exists)
LogFile=\rdpwrap.txt
; Hook SLPolicy API on Windows NT 6.0
@@ -2545,6 +2545,24 @@ SLInitHook.x64=1
SLInitOffset.x64=26140
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]
; Patch CEnforcementCore::GetInstanceOfTSLicense
LocalOnlyPatch.x86=1
@@ -3892,6 +3910,16 @@ bMultimonAllowed.x64 =EE478
ulMaxDebugSessions.x64=EE47C
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]
bInitialized.x86 =C6F74
bServerSku.x86 =C6F78
diff --git a/res/rdpwrap.ini b/res/rdpwrap.ini
index 6d280eb..244e03e 100644
--- a/res/rdpwrap.ini
+++ b/res/rdpwrap.ini
@@ -2,7 +2,7 @@
; Do not modify without special knowledge
[Main]
-Updated=2017-05-12
+Updated=2017-05-17
LogFile=\rdpwrap.txt
SLPolicyHookNT60=1
SLPolicyHookNT61=1
@@ -1522,6 +1522,20 @@ SLInitHook.x64=1
SLInitOffset.x64=26140
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]
LocalOnlyPatch.x86=1
LocalOnlyOffset.x86=A9698
@@ -2785,6 +2799,16 @@ bMultimonAllowed.x64 =EE478
ulMaxDebugSessions.x64=EE47C
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]
bInitialized.x86 =C6F74
bServerSku.x86 =C6F78
diff --git a/technical.txt b/technical.txt
index 2ae82ec..b5975fe 100644
--- a/technical.txt
+++ b/technical.txt
@@ -101,6 +101,7 @@ Terminal Services supported versions
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.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.15007.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):
+2017.05.17 :
+- added support for termsrv.dll 10.0.14997.1001 x64
+
2017.05.12 :
- added support for termsrv.dll 10.0.14393.1198 x86