Skip to content

Instantly share code, notes, and snippets.

@ph33nx
Last active December 1, 2025 10:46
Show Gist options
  • Select an option

  • Save ph33nx/9b8120e8b5fde95dd2d8bf9e28a061d3 to your computer and use it in GitHub Desktop.

Select an option

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.

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

Step 1. 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

Step 2. Install the Google USB Driver (Optional)

You only need to follow this step if you connect your android device in fastboot mode with Windows and it isn't detected.

  1. Download the Driver

    • Download the Google USB Driver. Click on "Download the Google USB Driver ZIP file (ZIP)", no need to follow "Get it from the Android SDK Manager" unless you've Android Studio installed.
  2. Extract the zip you downloaded

  3. Update Driver in Device Manager

    • Connect your android device when its in fastboot mode.
    • 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).

You're all set!


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

@alawne7
Copy link

alawne7 commented Aug 13, 2025

fastboot

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