added RDP client mode

This commit is contained in:
Michael H.G. Schmidt 2024-01-30 00:02:55 +01:00
parent f8831d893b
commit c2c772e739
3 changed files with 37 additions and 0 deletions

6
tools/logonalt.cmd Normal file
View File

@ -0,0 +1,6 @@
@echo off
:RDPLOOP
start /WAIT mstsc.exe
goto :RDPLOOP

3
tools/logonalt.vbs Normal file
View File

@ -0,0 +1,3 @@
Set LogonScript = CreateObject("WScript.Shell")
LogonScript.Run "%SystemDrive%\tools\logonalt.cmd", 0, False

View File

@ -0,0 +1,28 @@
@echo off
set TOOLS=c:\tools
set RDPUSER=rdpclient
set RDPPASS=bf7d19ea8
echo ####### %0 #######
echo Changing shell to MSTSC.EXE ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v Shell /t REG_SZ /d "cmd.exe /C %TOOLS%\logonalt.vbs" /f 2>/nul
echo Creating user %RDPUSER% ...
net user %RDPUSER% %RDPPASS% /ADD
echo Activating Auto Logon for user %RDPUSER% ...
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v AutoAdminLogon /t REG_SZ /d "1" /f 2>/nul
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DefaultUsername /t REG_SZ /d "%RDPUSER%" /f 2>/nul
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" ^
/v DefaultPassword /t REG_SZ /d "%RDPPASS%" /f 2>/nul
echo "Please REBOOT"
echo ####### %0 #######