Running the ADB shell on the command line shows the following error message
C:\Documents and settings\administrator>adb Shell
ADB server is out of date. Killing ...
ADB server didn ' t ACK
* Failed to start daemon *
Error:protocol Fault (no status)
The reason for this problem is that the 5037 ports used by ADB are occupied by other applications (pea pods, storm cell assistants, Sjk_deamon.exe).
1. See which applications 5037 ports are occupied by
Using the FPort tool, the FPort tool can display more detailed information, including the location of the program, than the system's own Netstat-ano. (You can also use CurrPorts with a graphical interface)
C:\Documents and Settings\administrator>d:
D:\>fport.exe |findstr 5037
0 System-> 5037 TCP
2184 adb-> 5037 TCP C:\Program files\baofeng\phoneassistant\adb
. exe
or Netstat-nao |findstr 5037.
2. After the process number is obtained by fport, the process number corresponding to the process is closed
D:\>tskill 2148
Process not found: 2148
D:\>tskill 2184
Author: cnblogs Juejiang
Back to the column page: http://www.bianceng.cnhttp://www.bianceng.cn/OS/extra/