windows下删除本地adb的emulator device
tcpip的很简单,disconnect就可以。
本地的比较麻烦。
-
查询pid
netstat -ano|findstr 5555 TCP 127.0.0.1:5555 0.0.0.0:0 LISTENING 3496 TCP 127.0.0.1:5555 127.0.0.1:58569 ESTABLISHED 3496 TCP 127.0.0.1:58569 127.0.0.1:5555 ESTABLISHED 2356
我们看到adb server的进程ID 3496
-
删除进程
taskkill /pid 3496 -f
成功: 已终止 PID 为 3496 的进程。