windows cmd 关闭线程命令
作者:互联网
1 netstat -ano|findstr "55928"找到线程 2 3 C:\Users\xxx>netstat -ano|findstr "55928" 4 TCP 192.168.1.6:55928 112.34.113.197:5287 ESTABLISHED 12232 5 6 taskkill /pid 12232 /f关闭指定线程 7 C:\Users\xxxCZF-PC>taskkill /pid 12232 /f 8 成功: 已终止 PID 为 12232 的进程。
标签:findstr,cmd,windows,ano,pid,55928,线程,12232 来源: https://www.cnblogs.com/lanzhan/p/15359083.html