好记性不如烂笔头。

cmd netstat find 查看端口连接数

以下命令保存为.bat文件执行

@echo off
:start
netstat -n|find "ESTABLISHED"|find ":81"  /c
TIMEOUT /T 2
goto start