windows查看端口占用
时间:2020-10-13 15:02:33
收藏:0
阅读:31
常用简单命令
0x01 查看所有端口 netstat -ano
2、查看指定端口使用情况 netstat -ano|findstr "3389"
3、查看PID对应进程 tasklist|findstr "10100"
原文:https://www.cnblogs.com/Gouwa/p/13808412.html
评论(0)