Enable Remote Desktop In Command Prompt
echo Windows Registry Editor Version 5.00> c:\TS.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server]>> c:\TS.reg
echo "fDenyTSConnections"=dword:00000000>> c:\TS.reg
echo "fAllowToGetHelp"=dword:00000000>> c:\TS.reg
regedit /s c:\TS.reg
del c:\TS.reg
|