Mik-el Tech

Web & Computer

How to install and use ADB [Max control over your android device]

2019-10-25 14:24:14

(This tutorial is easier than most tutorials on the web.) ADB allows to connect your Android device to your computer, through a command line shell! So why should you use it? It's more powerful and immediate than a standard usb connection. Let's see why!

What is ADB?

Adb stands for "Android Debug Bridge". It's a command line software that allows to connect an Android device to a computer


Why should I use it?

You can connect an Android device to a computer in 3 different ways:

  • MTP / media device
  • PTP / picture transfer
  • mass storage (only avaible on very old android versions)

Well ADB It's much more powerful than any kind of connection or connection specific software!

  • Works every time and in any condition
  • You can do geek stuff you couldn't do in any other way: changing file permissions, give linux commands, recover data etc...
  • It's minimal


Step 1 - Enable "Usb debugging" on your Android device

  1. Open Settings on Android 
  2. Tap "About Phone". (generally near the bottom of the list, in Android 8 oreo is hidden behind the โ€œSystemโ€ option).
  3. Tap "Build Number" option 7 times to enable Developer Mode. (you will see a toast message when it is done)
  4. Go back to the main Settings screen and you should see a new Developer Options menu you can access.
  5. Go in there and enable the USB Debugging option.

My advice: USB Debugging is always useful and can help you recover data and remove forgotten passwords from your device so leave this option always enabled  😉


Step 2- Dowload ADB and its drivers

  1. Download the software here
  2. Run it as Administrator
  3. Press Y three times


Step 3 - Connect your device to the PC with a usb cable in "MTP mode" 

You should already see it on your pc 


Step 4 - Use ADB

  1.  Open the windows terminal as Administrator (press start -> type "cmd" -> right click -> "open as administrator")
  2. type "adb devices" and press enter
  3. You'll see your device listed. (If it's not listed go to step 5)
  4. Now you can use all ADB commands, congratulations.

Step 5 - In case you don't see your device listed

  • Install other ADB drivers. You can download them here
  • If the device is still not listed download usb driver specific for your Android device. 
  • Still not listed? Change your usb cable or try a usb 2.0 port instead of a 3.0 port


Step 6 - Learn useful ADB commands in my next tutorials!

1