w10install/tools/install-rdpwrapper.cmd

31 lines
1017 B
Batchfile
Raw Permalink Normal View History

2023-12-29 22:53:58 +01:00
@echo off
set TOOLS=c:\tools
echo ####### %0 #######
%TOOLS%\RDPWInst.exe -i -s -r
2024-01-01 18:59:11 +01:00
echo installing custom inifile ...
2023-12-29 22:53:58 +01:00
if EXIST %TOOLS%\scripts\config\rdpwrap.ini (
copy /Y %TOOLS%\scripts\config\rdpwrap.ini %Systemroot%\system32\rdpwrap.ini
)
2024-01-01 18:59:11 +01:00
echo forcing users to have only one RDP session ...
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer" ^
/v fSingleSessionPerUser /t REG_DWORD /d 1 /f
echo disabling disconnect of RDP sessions ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" ^
/v MaxDisconnectionTime /t REG_DWORD /d 0 /f
echo disabling disconnect of IDLE sessions ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" ^
/v MaxIdleTime /t REG_DWORD /d 0 /f
echo configuring cleanup for broken sessions ...
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" ^
/v fResetBroken /t REG_DWORD /d 1 /f
2023-12-29 22:53:58 +01:00
echo ####### %0 #######