ADB & FASTBOOT COMMAND ON WINDOWS
PART1: GET ADB & FASTBOOT TOOLS
-
Download the latest version of platform-tools on Google drive (link) or go to the official SDK Platform Tools release -> choose options for Windows PC (link).
-
Move the ‘platform tools’ folder to C drive so that you can easily access it anytime.
PART 2: SETTING PATH AND ENVIRONMENTS
-
Copy the path (address) of the ‘platform tools’ folder. You can shift+right click to get the option called ‘Copy as Path’, using which will copy the path to PC’s clipboard. Mine is in the C drive, and here is its path: “C:platform-tools”
-
Open Environment Variables settings by searching for it in Windows search. Otherwise, find it manually as given below:
-
Right-click the Computer icon.
-
Click Properties.
-
Click Advanced system properties.
-
In the window that pops up, click Advanced.
-
Click Environment Variables.
-
Under System variables section, click the Path option to select it.
-
Click the Edit button.
-
Add the path of the platform-tools folder:
-
On Windows 10, click the New button, and then copy the path of your ‘platform tools’ folder.
-
Click OK, then again OK, and then again OK to exit.
-
Open a command window or a PowerShell window and type adb and then hit the enter key, you shall get a list of adb commands. Meaning, adb is working from everywhere on your Windows PC. Try the same with fastboot.
PART 3: INSTALL USB DRIVER FOR FASTBOOT
-
Downloads the Google USB driver in here
-
Extract the zip file and we got the folder include all these folders:
-
Search Computer Management on your PC :
-
Choose Device Manager -> Other devices -> Android Phone -> Update Driver Software
-
Choose Browse my computer for driver software
-
Choose Let me pick from a list of available drivers on my computer
-
Choose Have Disk
-
Choose Browse -> Redirect to USB_driver folder -> Choose android_winusb -> Click Open -> OK then wait until it is installed successfully.
PART 3: How to use ADB & Fastboot
-
Put the watch correctly on the charger and connect to your PC
-
Run command <adb devices> to make sure ADB works well, the response should be:
-
Run command :
Adb reboot bootloader
-> The watch will reboot then go to fastboot mode
-
Run command fastboot devices to make sure fastboot works well, the response should be:
Congratulations, you are good to go the next Steps !