How Kill Network Machine Process.

EX:-

C:\>tasklist /S 10.1.11.50(network machine ip address)

                     process list will appear 

  (if you want find particular process use following command)

C:\>tasklist /S 10.1.11.50|findstr chrome.exe


C:\>taskkill /S 10.1.11.50 /PID 3480  /f
SUCCESS: The process with PID 3480 has been terminated.

/PID = process id.
/F= Force

No comments:

Post a Comment