查看端口及进程

查看端口
    netstat -an
    netstat -ano    
查看某个端口被哪个应用占用
    netstat -ano |findstr "端口号"
根据进程id查看进程名称
    tasklist |findstr "进程id号"
杀掉进程
    taskkill /f /t /im "进程id或者进程名称"

 

posted @ 2020-08-26 14:29  無玑小姐  阅读(189)  评论(0编辑  收藏  举报