查看端口 并看该端口被哪个进程使用

1、查看端口

netstat -aon|findstr  "8080"

结果:

 TCP    0.0.0.0:8080           0.0.0.0:0              LISTENING       940
 TCP    192.168.1.102:4129     123.147.164.37:8080    ESTABLISHED     4204


2、查看进程

tasklist|findstr "4204"

结果:

DClient.exe                 4204 Console                 0     89,232 K

你可能感兴趣的:(查看端口 并看该端口被哪个进程使用)