What is ADB
ADB (Android Debug Bridge) is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device.
Android Debug Bridge is a part of the standard Android SDK, You can find the adb tool in {sdk foloder}/platform-tools/. so you can grab it from Android SDK package.
How To Install ADB (Android Debug Bridge)
- Installing the Android SDK: Download the zip file for Windows Android SDK, and then extract to C:/android-sdk-windows.
- Downloading the SDK Platform Tools: Browse to the SDK folder and launch SDK Manager. When launching it for the first time, it will present you with a window to choose packages to install. The first option begins with Android SDK Platform-tools. Make sure it is checked, and uncheck all the other packages for now. You can check/uncheck a package by clicking on its name and then selecting the Accept/Reject radio button. Simply click Install and wait till the platform tools are installed. Once the process is done, you will have a platform-tools folder inside your SDK folder. That folder will include ADB and all its dependencies.
- Setting the Path variable:
- Installing the USB drivers:
Finally, you need to install the USB drivers. You may or may not need to perform this step, depending on your device.
- Launch SDK Manager from the SDK folder and click on Available packages in the left pane.
- Expand Third party Add-ons followed by Google Inc. add-ons and check Google Usb Driver package
- Click Install Selected and in the window that pops up, click the Accept all radio button followed by the Install button.
Other resources about installing ADB
How to install ADB with Android SDK