windows端口查看及进程查找

1. 使用netstat查看端口

   netstat -ano

2. 查找特定端口号:

   netstat -aon|findstr "port"

3. 查找该端口的进程

   tasklist|findstr "port"

原文地址:https://www.cnblogs.com/davidwang456/p/3447950.html