cmd


windows停止占用端口的进程

# 查看哪个进程占用了1000端口
netstat -aon|findstr 1000
# 最后一位为pid(1234),杀掉进程
taskkill -f -pid 1234