cmd根据端口找到应用程序

大致思路是:
先根据端口找到应用的pid:

netstat -aon | findstr "4723"
TCP 0.0.0.0:4723 0.0.0.0:0 LISTENING 23684

再根据pid找到应用程序:

tasklist | findstr "23684"

Appium.exe 23684 Console 1 145,816 K

posted @ 2023-12-28 09:17  Bre-eZe  阅读(41)  评论(0编辑  收藏  举报