Command Line Commands that solved my problems:
To Enable Remote Desktop:
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 0 /f
To Disable Remote Desktop:
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server" /v fDenyTSConnections /t REG_DWORD /d 1 /f
Task List / Kill:
taskkill -pid 4104
taskkill -im iexplore.exe
tasklist -m
tasklist -svc
Some references:
No comments:
Post a Comment