asmtron 1 week ago committed by GitHub
commit c1ed1bf391
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,3 +1,23 @@
# RDP Wrapper & Autoupdate
### Automatic RDP Wrapper installer and updater v.1.4 asmtron (2025-10-23)
#### Info:
The autoupdater first use and check the local rdpwrap.ini file.
If a new termsrv.dll is not supported in the local rdpwrap.ini file,
autoupdate uses the online rdpwrap.ini files from the community.
**Autogeneration: v.1.4 or newer supports autogeneration of rdpwrap.ini entries**
`{ Special thanks to binarymaster, sebaxakerhtc and all other contributors }`
#### autoupdate.bat Options:
- `-log` = redirect display output to the file autoupdate.log
- `-taskadd` = add autorun of autoupdate.bat on startup in schedule task
- `-taskremove` = remove autorun of autoupdate.bat on startup in schedule task
#### [Download and Install](https://github.com/asmtron/rdpwrap/blob/master/binary-download.md)
# RDP Wrapper Library by Stas'M
[![Telegram](https://img.shields.io/badge/chat-Telegram-blue.svg)](https://t.me/rdpwrap)
@ -9,7 +29,7 @@
The goal of this project is to enable Remote Desktop Host support and concurrent RDP sessions on reduced functionality systems for home usage.
RDP Wrapper works as a layer between Service Control Manager and Terminal Services, so the original termsrv.dll file remains untouched. Also this method is very strong against Windows Update.
RDP Wrapper works as a layer between Service Control Manager and Terminal Services, so the original `termsrv.dll` file remains untouched. Also this method is very strong against Windows Update.
[pVistaST]: http://stascorp.com/images/rdpwrap/pVistaST.jpg
[pVistaHB]: http://stascorp.com/images/rdpwrap/pVistaHB.jpg
@ -47,20 +67,20 @@ RDP Wrapper works as a layer between Service Control Manager and Terminal Servic
| Windows 8.1 | [![Windows 8.1 Preview][pWin81P]][fWin81P] [![Windows 8.1][pWin81]][fWin81] |
| Windows 10 | [![Windows 10 Technical Preview][pWin10TP]][fWin10TP] [![Windows 10 Pro Technical Preview][pWin10PTP]][fWin10PTP] [![Windows 10][pWin10]][fWin10] |
---
[WinPPE]: http://forums.mydigitallife.info/threads/39411-Windows-Product-Policy-Editor
[WinPPE]: https://forums.mydigitallife.net/threads/windows-product-policy-editor.39411/
This solution was inspired by [Windows Product Policy Editor][WinPPE], big thanks to **kost** :)
— binarymaster
### Attention:
It's recommended to have original termsrv.dll file with the RDP Wrapper installation. If you have modified it before with other patchers, it may become unstable and crash in any moment.
It's recommended to have original `termsrv.dll` file with the RDP Wrapper installation. If you have modified it before with other patchers, it may become unstable and crash in any moment.
### Information:
- Source code is available, so you can build it on your own
- RDP Wrapper does not patch termsrv.dll, it loads termsrv with different parameters
- RDPWInst and RDPChecker can be redistributed without development folder and batch files
- RDPWInst can be used for unattended installation / deployment
- RDP Wrapper does not patch `termsrv.dll`, it loads `termsrv` with different parameters
- `RDPWInst` and `RDPChecker` can be redistributed without development folder and batch files
- `RDPWInst` can be used for unattended installation / deployment
- Windows 2000, XP and Server 2003 will not be supported
### Key features:
@ -448,16 +468,16 @@ Visit [issues](https://github.com/stascorp/rdpwrap/issues) section, and check wh
- Windows 10 Enterprise
- Windows Server 2016 Technical Preview
Installation instructions:
#### Installation instructions:
- Download latest release binaries and unpack files
- Right-click on **`install.bat`** and select Run as Administrator
- See command output for details
To update INI file:
#### To update INI file:
- Right-click on **`update.bat`** and select Run as Administrator
- See command output for details
To uninstall:
#### To uninstall:
- Go to the directory where you extracted the files
- Right-click on **`uninstall.bat`** and select Run as Administrator
- See command output for details

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

@ -0,0 +1,9 @@
@echo off
if exist "%~dp0autoupdate.bat" (
call "%~dp0autoupdate.bat" -taskremove
) else (
if exist "%~dp0..\autoupdate.bat" (
call "%~dp0..\autoupdate.bat" -taskremove
)
)
pause

@ -0,0 +1,9 @@
@echo off
if exist "%~dp0autoupdate.bat" (
call "%~dp0autoupdate.bat" -taskadd
) else (
if exist "%~dp0..\autoupdate.bat" (
call "%~dp0..\autoupdate.bat" -taskadd
)
)
pause

@ -0,0 +1,71 @@
_ _
_ | | _ | | _
____ _ _| |_ ___ _ _ ____ _ | | ____| |_ ____ | | _ ____| |_
/ _ | | | | _)/ _ \| | | | _ \ / || |/ _ | _)/ _ ) | || \ / _ | _)
( ( | | |_| | |_| |_| | |_| | | | ( (_| ( ( | | |_( (/ / _| |_) ( ( | | |__
\_||_|\____|\___\___/ \____| ||_/ \____|\_||_|\___\____(_|____/ \_||_|\___)
|_|
Automatic RDP Wrapper installer and updater v.1.4 asmtron (2025-10-23)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Options:
-log = redirect display output to the file autoupdate.log
-taskadd = add autorun of autoupdate.bat on startup in schedule task
-taskremove = remove autorun of autoupdate.bat on startup in schedule Task
Info:
The autoupdater first use and check the local rdpwrap.ini file.
If a new termsrv.dll is not supported in the local rdpwrap.ini file,
autoupdate uses the online rdpwrap.ini files from the community.
Autogeneration: v.1.4 or newer supports autogeneration of rdpwrap.ini entries
{ Special thanks to binarymaster, sebaxakerhtc and all other contributors }
RDP Wrapper with Autoupdater installation
=========================================
It is recommended to use the installer as it performs all necessary steps automatically.
a) For automatic installation
1. Run "RDPWrap-with-Autoupdate-v1.4-Installer.exe" (or newer) to install RDP Wrapper with Autoupdater
[ Download: https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.exe ]
[ Download: https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.zip ]
b) For manual installation
1. Create the directory: "%ProgramFiles%\RDP Wrapper"
(usually C:\Program Files\RDP Wrapper)
2. Set in your Antivirus or Windows Defender an exclusion on the folder "%ProgramFiles%\RDP Wrapper" to prevent the deletion of RDP Wrapper files...
3. Copy the files from the zip-archive "RDPWrap-with-Autoupdate-v1.4.zip" (or newer) to the directory: "%ProgramFiles%\RDP Wrapper"
DO NOT use other directories to install/extract the RDP Wrapper files.
USE ONLY the directory: "%ProgramFiles%\RDP Wrapper" (usually C:\Program Files\RDP Wrapper)
[ Download: https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4.zip ]
4. To enable autorun of autoupdate.bat on system startup, run the following helper batch file as administrator:
"%ProgramFiles%\RDP Wrapper\helper\autoupdate__enable_autorun_on_startup.bat"
5. Now you can use the autoupdate batch file to install and update the RDP Wrapper. Please run autoupdate.bat as administrator:
"%ProgramFiles%\RDP Wrapper\autoupdate.bat"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,58 @@
Automatic RDP Wrapper installer and updater v.1.4
=================================
` asmtron (2025-10-23)`
Info:
The autoupdater first use and check the local rdpwrap.ini file.
If a new termsrv.dll is not supported in the local rdpwrap.ini file,
autoupdate uses the online rdpwrap.ini files from the community.
**Autogeneration: v.1.4 or newer supports autogeneration of rdpwrap.ini entries**
` { Special thanks to binarymaster, sebaxakerhtc and all other contributors }`
RDP Wrapper with Autoupdater installation
=========================================
It is recommended to use the installer as it performs all necessary steps automatically.
### a) For automatic installation
[ Download: [https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.exe](https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.exe) ]
[ Download: [https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.zip](https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4-Installer.zip) ]
1. Run "RDPWrap-with-Autoupdate-v1.4-Installer.exe" (or newer) to install RDP Wrapper with Autoupdater
### b) For manual installation
[ Download: [https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4.zip](https://github.com/asmtron/rdpwrap/releases/download/v1.4/RDPWrap-with-Autoupdate-v1.4.zip) ]
1. Create the directory: "%ProgramFiles%\RDP Wrapper"
(usually C:\Program Files\RDP Wrapper)
2. Set in your Antivirus or Windows Defender an exclusion on the folder "%ProgramFiles%\RDP Wrapper" to prevent the deletion of RDP Wrapper files...
3. Copy the files from the zip-archive "RDPWrap-with-Autoupdate-v1.4.zip" (or newer) to the directory: "%ProgramFiles%\RDP Wrapper"
DO NOT use other directories to install/extract the RDP Wrapper files.
USE ONLY the directory: "%ProgramFiles%\RDP Wrapper" (usually C:\Program Files\RDP Wrapper)
4. To enable autorun of autoupdate.bat on system startup, run the following helper batch file as administrator:
"%ProgramFiles%\RDP Wrapper\helper\autoupdate__enable_autorun_on_startup.bat"
5. Now you can use the autoupdate batch file to install and update the RDP Wrapper. Please run autoupdate.bat as administrator:
"%ProgramFiles%\RDP Wrapper\autoupdate.bat"

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save