win10查看端口使用情况

1. 察看所有已使用的端口

netstat -ano

2. 查看特定端口的使用

netstat -ano|findstr "443"

3. 查看占用端口的进程PID

tasklist|findstr "7648"