跳至主要內容

windows通过cmd查找端口占用

白日梦想家yy...小于 1 分钟

https://blog.csdn.net/hallyz945/article/details/105839665open in new window

windows通过cmd查找端口占用

  1. 查看端口占用情况 netstat -ano

  2. 查看某个端口被占用情况 netstat -ano | findstr xxxx //xxxx为查询的端口号

  3. 查看某个状态的端口 netstat -ano | findstr xxxx //xxxx为查询的端口状态

  4. 查看使用指定端口的应用程序 tasklist | findstr xxxx //xxxx指的是pid

  5. 结束指定进程 taskkill /pid xxxx -t -f //xxxx指的是pid或者:taskkill /f /t /im QQ.exe

上次编辑于:
贡献者: mygit