windows查看端口占用的进程和杀死进程

Posted jkwll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows查看端口占用的进程和杀死进程相关的知识,希望对你有一定的参考价值。

1通过端口查进程

idnetstat -ano | findstr "LISTENING"| findstr ":10000"

2.通过进程查应用(图为百度网盘的子程序)

tasklist |findstr "2708"

3.通过进程id杀死进程

taskkill /f /t /im “2708”

技术图片

 

以上是关于windows查看端口占用的进程和杀死进程的主要内容,如果未能解决你的问题,请参考以下文章