Monday, July 1, 2013

How tos in MS Windows to develop your application peacefully

I wanted to capture all the tools and tricks that I was able to find after a long research and reading.  This way I can come back here and reuse it or someone else can find it.

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