Untitled

 avatar
unknown
plain_text
9 months ago
738 B
1
Indexable
@echo off
SETLOCAL

:: Enable Clipboard Redirection
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Terminal Server" /v "DisableClipboardRedirection" /t REG_DWORD /d 0 /f

:: Enable Drive Redirection
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Terminal Server" /v "DisableDriveRedirection" /t REG_DWORD /d 0 /f

:: Enable Client Drive Mapping (CDM)
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v fDisableCdm /t REG_DWORD /d 0 /f

:: Enable Clipboard for Terminal Services
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v fDisableClip /t REG_DWORD /d 0 /f

ENDLOCAL
echo Registry updates to re-enable features have been completed.
pause
Editor is loading...
Leave a Comment