[Android Forensics] ADB version update detailed steps

[Android Forensics] ADB version update detailed steps

Update the ADB version to solve the problem of not being able to connect to the device【Su Xiaomu】

ADB does not have an automatic update command, we need to download a new ADB for replacement update.

1. ADB search

Open the task manager (shortcut key shift+ctrl+Esc or Win+X), find ADB in "Details", and open the location where ADB is located (right-click ADB, open the location where the file is located).

insert image description here

insert image description here

2. Replace the old version of ADB

Upgrading the ADB version, just replacing the adb.exe file doesn't work. The correct way is as follows:

Download the new ADB package, (the ADB version used here is 1.0.40) replace the three files adb.exe, AdbWinApi.dll, and AdbWinUsbApi.dll (some old versions only have the first two, and replace all the new three files) can be).

insert image description here

Run the adb devices command, (if there is no response, first execute the adb start-server command to start the adb service).

As shown in the figure, the connection is successful, and the "Allow USB debugging" window appears on the mobile phone, check to allow all, and click OK.

insert image description here

Allow USB debugging

If it is commonly used, it is recommended to check Allow all.

insert image description here

Input: adb shell, the display is normal.

adb shell connect successfully

insert image description here

Summarize

Try more!
The writing is one-sided, and it is purely a record. If there are any mistakes or omissions, please correct me.

[ The ownership of the work belongs to the author [Su Xiaomu], please indicate the source of the article when reprinting ]

name time
Start editing date May 13, 2020
last edit date April 29, 2022

Guess you like

Origin blog.csdn.net/NDASH/article/details/130532180