Windows服务器中查看进程命令端口操作

查看端口:

netstat -ano

 

 

查看具体端口号:

netstat -ano |findstr "端口号"

 

根据进程ID查看对应的进程名称:

tasklist |findstr "进程id号"

 

杀死对应的进程:

taskkill /f /t /im "进程id或者进程名称"

posted @ 2020-03-02 16:15  金鑫金  阅读(2934)  评论(0编辑  收藏  举报