windows常用命名

98 阅读1分钟

1、查看端口号使用情况

netstat -ano

image.png 2、查看3000 端口使用情况

netstat -ano|findstr "80"

image.png 3、杀掉端口号为3000的进程

taskkill /pid pid号 -t -f

image.png