future technology: Download and Install ADB or Fastboot on Windows Computer

Sunday 1 May 2016

Download and Install ADB or Fastboot on Windows Computer

Download and Install ADB or Fastboot on Windows Computer.

Setup ADB or Fastboot. In this guide we will show you how to Download and Install ADB or Fastboot on Windows Computer, to start this guide you can visit Android Studio via this link.
http://developer.android.com/sdk/index.html#download
On this website, you can download the Android SDK. which will give you the latest updated version of adb and fast boot. You can explore this page by scrolling down to the bottom of the page and find Other Download Options>SDK Tools Package, then find the right version for your Windows Operating System. While waiting for the download is complete, you can create a folder in drive C:\ called SDK. as an example (C:\SDK).

Now following this guide to install ADB.
  • After you successfully download the SDK zip, now you can extract it into your C:\SDK folder.
  • Navigate to 
    • C:\SDK\android-sdk-windows
  • Then, open SDK Manager.exe.
  • In SDK Manager you need to install the following packages:
    • Tools> Android SDK Tools, Android SDK Platform-tools 
    • Extras> Android Support Library, Google USB Driver.
  • Once the installation finish, you will see a new folder created on drive C:\SDK.
  • One of the folders will appear platform-tools.
  • Now you can open the platform-tools folder, then you can see fastboot.exe and adb.exe.
  • This folder is your fastboot folder.

How to check your ADB or fastboot correctly installed.

  1. Open a command prompt from within your fastboot folder.
  2. To start this command prompt just hold shift + right click, select open command prompt here.
    Install ADB or Fastboot on Windows Computer
    Install ADB or Fastboot on Windows Computer
  3. Now type,
    • adb version
  4. The result, It should return your device serial number, if so, adb is working.
  5. Now test your fastboot by connecting your device to your PC while booted into the bootloader.
  6. How to reboot your device into bootloader?
    • Power Off your device.
    • Then press and hold power + volume down (it's should work on the most android device)
  7. Then type.
    • fastboot devices
  8. The result, It should return your device serial number, if so, fastboot is working.

How to Boot the device into Bootloader.

If you not sure using physical button on your device to boot into bootloader, you can use this tips.
  1. Make sure your device is Power Off
  2. Then, connect your device to the computer.
  3. Open your fastboot folder, then run the command prompt from it.
  4. Now type.
    • adb reboot bootloader
  5. Now your device will reboot into bootloader.

How to Boot the device into Recovery.

  1. You can boot your device into the bootloader (see above), use the volume button to scroll through the options and use the power button to select the recovery mode option
  2. Or use this following command.
    • adb reboot recovery
  3. Now your device will boot into recovery mode.

No comments:

Post a Comment