Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ph33nx/9b8120e8b5fde95dd2d8bf9e28a061d3 to your computer and use it in GitHub Desktop.
Save ph33nx/9b8120e8b5fde95dd2d8bf9e28a061d3 to your computer and use it in GitHub Desktop.
Install Android USB Driver, ADB, and Fastboot on Windows 10/11 (2025) – Step-by-step instructions to install the Android USB driver and set up ADB/Fastboot using winget on Windows 10/11. Perfect for Android development and troubleshooting.

Credit: ph33nx


Manual Installation Guide for Android USB Driver & ADB/Fastboot (Windows 10/11)

This guide provides simple, direct steps to manually install the Google USB Driver and ADB/Fastboot binaries using winget on Windows 10/11.


1. Install the Google USB Driver Manually

  1. Download the Driver

    • Download the Google USB Driver and extract the ZIP to a folder (e.g., C:\usb_driver).
  2. Update Driver in Device Manager

    • Open Device Manager.
    • Locate your Android device (often listed under "Unknown Devices").
    • Right-click the device and select Update driver.
    • Choose Browse my computer for driver software.
    • Click Let me pick from a list of available drivers on my computer.
    • Click Have Disk… and navigate to the folder where you extracted the driver.
    • Select android_winusb.inf and follow the prompts (ignore any unsigned driver warnings if necessary).

2. Install ADB and Fastboot Binaries via Winget

  1. Open Command Prompt or PowerShell

    • Execute the following command to install the binaries:
      winget install Google.PlatformTools
  2. Verify Installation

    • Check ADB version:
      adb version
    • Check Fastboot version:
      fastboot version

You're all set!


Keywords: Windows 10, Windows 11, Android, ADB, Fastboot, Google USB Driver, Platform Tools, winget, device driver, manual installation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment