根据端口用cmd查找进程

根据端口用cmd查找进程

netstat -ano 
netstat -aon|findstr "1900"
tasklist|findstr "1900"

查看端口:netstat -ano
查看指定端口:netstat -aon|findstr “端口”
查看指定进程:tasklist|findstr “PID”
查看具体程序:用任务管理器–>详细信息 里查找

根据端口用cmd查找进程_第1张图片

根据端口用cmd查找进程_第2张图片

你可能感兴趣的:(cmd,进程,端口)