码迷,mamicode.com
首页 > Windows程序 > 详细

window下查看端口号,并删除对应进程

时间:2019-11-18 15:39:24      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:kill   taskkill   console   查看   tst   查看端口   code   win   window   

  1. netstat -aon
    • 查看所有端口号
  2. netstat -aon|findstr 8080
    • 查看8080端口号
      TCP    0.0.0.0:8080           0.0.0.0:0              LISTENING       9788
    //TCP          8080:端口号                                  PID:进程标识码  9788 
  3. tasklist|findstr 9788
    • 查看进程码9788
    node.exe                      9788 Console                    1    425,576 K
  4. TASKKILL /F /PID 9788
    • 删除进程
    成功: 已终止 PID 为 9788 的进程。

window下查看端口号,并删除对应进程

标签:kill   taskkill   console   查看   tst   查看端口   code   win   window   

原文地址:https://www.cnblogs.com/ljyyjj/p/11882391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!