windows 8 查询端口,使用pid杀掉进程命令

来源:互联网 发布:顶级域名绑定二级域名 编辑:程序博客网 时间:2024/06/03 20:22

进入cmd


netstat -ano    //查出所有端口     若要制定端口可以 netstat -ano | findStr "8080"


//根据pid杀掉进程

taskkill /t /f /pid 000

0 0