windows CMD里查看端口和对应的应用
netstat-ano
netstat-ano|findstr8080
在结果中找到8080字样的,然后看他使用的是pid
就是应用到底是啥
引用
C:\Users\dell>netstat-ano|findstr8080
TCP192.168.8.138:49176101.227.139.187:8080ESTABLISHED2796
TCP192.168.8.138:50799180.163.32.172:8080ESTABLISHED1652
TCP192.168.8.138:54472180.163.25.150:8080ESTABLISHED11724
TCP192.168.8.138:60838101.226.222.56:8080CLOSE_WAIT11724
C:\Users\dell>tasklist|findstr2796
TsService.exe2796Services018,320K
C:\Users\dell>tasklist|findstr11724
QQBrowser.exe11724Console197,076K
C:\Users\dell>tasklist|findstr1652
QQBrowser.exe1652Console1130,788K
但是要用找到的pid,在查看是那个应用
tasklist|findstr11724
相关推荐
kyssfanhui 2020-11-16
secondid 2020-06-12
leodengzx 2020-04-16
Attend 2020-04-08
cuixingwudi 2020-02-01
citic 2020-01-31
chenchuang 2020-01-25
alfredkao 2013-06-25
周海汉的开发 2013-06-24
wpeng 2013-07-18
LUOPING0 2019-12-24
onlykg 2019-12-10
atb 2019-12-08
Summer的小屋 2013-08-13
dasheng0 2013-09-11