windows下cmd 查看端口号kill进程

 

网上总是不准,还不如自己写,省时省力

1.查看所有进程占用的端口(基本没用,谁没事看所有端口?)

netstat –ano

 

2.看指定端口PID,最后一位数字,即PID

netstat -ano|findstr 80

 

3.按照PID kill进程

taskkill /pid 2472 -t -f

 

posted @ 2022-05-25 09:54  佩洛君  阅读(380)  评论(0编辑  收藏  举报