如何终止进程
>netstat -nao活动连接数
Proto本地地址外部地址状态PID
TCP 10.10.8.10:50931 122.109.119.13:22 established4664
>taskkill /pid 4664成功:向PID为4664的进程发送终止信号。
>netstat -nao
Active Connections
Proto Local Address Foreign Address State PID
TCP 10.10.8.10:50931 122.109.119.13:22 ESTABLISHED 4664为什么我不能用taskkill /pid 4664杀死pid 4664
发布于 2014-10-22 11:41:37
尝试将以下参数传递给TASKKILL
/T = kill child process
/F = forceful termination另一种选择是使用Power Shell通过pid杀死:
kill -id 4664如果什么都不能工作,可能是进程被阻塞,等待某些资源(可能是bug)。考虑重新启动。
https://stackoverflow.com/questions/26499927
复制相似问题