- Mobile Forensics Cookbook
- Igor Mikhaylov
- 289字
- 2021-07-02 21:48:05
Manual assembling of ADB driver
There are no drivers for some Android devices. For such devices, a driver can be created automatically by the programs, such as Oxygen Forensic or Magnet Acquire, but also the driver can be assembled manually. Perform the following steps to do so:
- Connect the device for which you need to create a driver.
- Upload Google USB Driver and unpack the uploaded archive.
- In the unpacked archive, find the android_winusb.inf file and open it in Notepad, which you should run as administrator. You will find the following fragment of text in the file:
;Google Nexus One
%SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_0D02
%CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_0D02&MI_01
%SingleAdbInterface% = USB_Install, USB\VID_18D1&PID_4E11
%CompositeAdbInterface% = USB_Install, USB\VID_18D1&PID_4E12&MI_01
- Run the Device Manager and find the device (Android or Android Composite ADB Interface).
- Click the right mouse button.
- In the opened menu, select Properties, then in the opened window select Details.
- In the drop-down Property menu, select Hardware Ids.
List of Hardware Ids Android devices
- Replace Google Nexus One with the name of your device. Replace the found fragment of text as follows:
;Your device name
%SingleAdbInterface% = USB_Install, USB\VID_04E8&PID_6860
%CompositeAdbInterface% = USB_Install, USB\VID_04E8&PID_6860&MI_01
%SingleAdbInterface% = USB_Install, USB\VID_04E8&PID_6860
%CompositeAdbInterface% = USB_Install, USB\VID_04E8&PID_6860&MI_01
- Save the edited file.
- In Device Manager, select the Android device.
- Click the right mouse button. In the opened window, select Update Driver Software.
- In the next window, select Browse my computer for driver software and specify the path to the folder where the edited file android_winusb.inf is located.
- There is a possibility that you will receive messages during the installation of the driver that the driver is incompatible and its installation is not recommended. Continue the installation of the driver. When the installation is finished, reboot the computer.