Windows Installation
System Requirements
- Operating System: Windows 10 (version 1903 or higher), Windows 11
- Architecture: x86_64 (AMD64)
- Disk Space: About 200MB for ADB
Installation Methods
Method 1: Download Platform Tools (Recommended)
- Download Android SDK Platform Tools for Windows
- Extract to
C:\Android\Sdk\platform-tools
Method 2: Via Package Managers (Recommended)
Using Scoop or Chocolatey:
powershell
# Using Scoop
scoop install adb
# Using Chocolatey
choco install adbConfigure Environment Variable
- Right-click "This PC" → Properties → Advanced system settings
- Click "Environment Variables"
- Find
Pathin "System variables", double-click to edit - Add ADB path, e.g.,
C:\Android\Sdk\platform-tools - Save
Verify Installation
Open Command Prompt, enter:
cmd
adb versionShould display:
Android Debug Bridge version 1.0.41
Version 34.0.5-10900879Phone Settings
- Enable "Developer Options" on your phone
- Settings → About Phone → Tap "Build Number" 7 times
- Enable "Wireless Debugging" or "USB Debugging"
- Settings → Developer Options → Wireless Debugging (recommended) or USB Debugging
- Ensure phone and computer are on the same WiFi network
WiFi Connection
cmd
adb connect 192.168.1.100:5555Where 192.168.1.100:5555 is your phone's IP address and port.