windows 检查端口占用情况的两种方法

2023-06-14  本文已影响0人  mudssky

01.netstat

列出所有端口的情况

netstat -ano

使用findstr 查找有没有对应的端口占用

netstat -ano | findstr 8080

02.powershell Get-NetTCPConnection

Get-NetTCPConnection 可以查看所有正在运行的程序及其占用的端口

Get-NetTCPConnection

在windows powershell中,执行下面的命令,查看端口占用情况

Get-Process -Id (Get-NetTCPConnection -LocalPort <port_number>).OwningProcess

可以筛选想要查看的列

Get-NetTCPConnection | Select-Object LocalAddress,LocalPort,RemoteAddress,RemotePort,OwningProcess | Format-Table -AutoSize
上一篇下一篇

猜你喜欢

热点阅读