adb.exe: protocol fault (couldn't read status): connection reset

使用xshell时出现问题:
adb.exe: protocol fault (couldn't read status): connection reset

解决方法:
大多数情况是5037端口被占用。5037为adb默认端口。
输入命令:

netstat -aon|findstr "5037"

会提示:

TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       6344

再查看6344的进程名:

tasklist|findstr "6344"

提示:

adb.exe                       6344 Console                    1      4,480 K

在任务管理器中结束adb.exe进程。
之后在xhell中输入:

adb start-server

你可能感兴趣的:(adb.exe: protocol fault (couldn't read status): connection reset)