zl程序教程

您现在的位置是:首页 >  系统

当前栏目

windows端口查看及进程查找

Windows进程 查看 查找 端口
2023-09-11 14:21:42 时间

1. 使用netstat查看端口

   netstat -ano

2. 查找特定端口号:

   netstat -aon|findstr "port"

3. 查找该端口的进程

   tasklist|findstr "port"