Windows 查询某个端口号以及对应端口号的进程

1. 命令查看对应端口号以及对应的程序PID

netstat -aon|findstr "5040"
image.png

2. 通过上面查询的端口号对应的PID查询占用程序

tasklist|findstr "9468"
image.png

Was this article helpful?

Related Articles