1、查看所有端口:
netstat -ano
2、查看固定端口:(注意findstr后要有空格)
netstat -ano|findstr "1883"
3、查看被占用端口的PID
netstat -ano|findstr "8083"
4、查看指定PID的进程
tasklist|findstr "5788"
5、结束进程
强制(/F参数)杀死 pid 为 5788 的所有进程包括子进程(/T参数)
taskkill /T /F /PID 5788
标签:findstr,查看,端口,ano,PID,win10,5788 From: https://www.cnblogs.com/jakerl/p/17523041.html