- 打开所有端口进程列表
netstat -ano
- 找到可以的端口链接
netstat -ano | findstr 13232
- 通过pid找到进程
tasklist | findstr 13232
- 通过进程找到文件路径
wmic process where name="firefox.exe" get processid,executablepath,name
wmic process get name,executablepath,processid|findstr 2860
网友评论