Proxyman
HomepageDownload
  • Overview
  • Changelog
  • License
  • License Manager
  • Raycast
  • Command-line
  • Security Compliance
  • Proxyman iOS
    • Proxyman for iOS
    • Map Local for iOS
    • Breakpoint for iOS
    • Tutorial for iOS
      • Map Local for iOS Tutorial
      • Breakpoint for iOS Tutorial
  • Debug on Devices
    • macOS
    • iOS Device
    • iOS Simulator
    • tvOS & watchOS
    • Android Device & Emulator
      • Automatic Script for Android Emulator
      • Sample Android Project
    • Firefox
    • Java VMs
    • Python
    • Ruby
    • NodeJS
    • Rust
    • Golang
    • React Native
    • Flutter
    • HTTP Clients
    • Docker
    • ElectronJS
    • NextJS (fetch)
  • Automatic Setup
    • Automatic Setup
    • Manual Setup
    • Troubleshooting
  • Atlantis
    • Atlantis for iOS
  • BASIC FEATURES
    • Proxyman Proxy Helper Tool
    • Request / Response Previewer
    • SSL Proxying
    • Bypass Proxy List
    • Import / Export
    • Content Filter
    • Multiple Tabs
    • Horizontal/Vertical/Window Layout
    • Copy as
    • Custom Previewer Tab
    • Custom Header Column
    • Regex (Regular Expression)
    • Filter JSON Response
    • Highlight by Color and Add Comment
    • Import / Export Settings
    • Multipart Form-Data Previewer
    • JSONPath
    • Customize Toolbar
    • Localization
    • Quick Preview
  • ADVANCED FEATURES
    • Repeat
    • Edit & Repeat
    • Compose new Request
    • No Caching
    • Breakpoint
    • Breakpoint Templates
    • Map Local (File)
    • Map Local (Directory)
    • Map Remote
    • External Proxy
    • Save Session
    • Protobuf
    • WebSocket
    • Clear Session
    • Block List
    • Allow List
    • Charles Proxy Converter
    • Custom Certificates
    • GraphQL
    • Network Conditions
    • Multiple Filters
    • Custom Filters
    • Publish to Gist
    • Reverse Proxy
    • Code Generator
    • Diff
    • Access Control
    • DNS Spoofing
    • SOCKS Proxy
    • Swagger OpenAPI
    • TLS Key Logging
  • Proxyman Windows
    • Install Certificate
    • WSL
  • Scripting
    • Scripting
    • async/await Request
    • Addons
    • Built-in JS Libraries
    • Write your own Addons
    • Snippet Code
    • Environment Variables
  • Troubleshooting
    • Proxyman does not work with VPN apps
    • My Remote Devices (iOS/Android) could not connect to Proxyman?
    • iOS 16 and iOS 17 issues
    • SSL Error from HTTPS Request/Response
    • I could not see any requests from my localhost server
    • I could not see any HTTP traffic from my NodeJS, Python, or Ruby scripts
    • *.local requests do not appear on Proxyman
    • I couldn't see any traffics on Proxyman
    • I couldn't see any requests from 3rd-party network libraries
    • [Breakpoint] Modify Request/Response by Raw Message
    • Could not change Proxyman App Icons
    • Lost data after updating Proxyman app?
    • Proxyman consumes too much RAM & unresponsive
Powered by GitBook
On this page
  • 1. What's it?
  • 2. Install WSL on Windows 10/11
  • 2. Install Choco on Windows 10/11
  • 3. Install adb on Windows 10/11
  • 4. ✅ Done. Try to Use Android Automatic Script again on Proxyman app
  • 5. References:
  1. Proxyman Windows

WSL

How to install `adb`, `choco` and `WSL` for Windows.

PreviousInstall CertificateNextScripting

Last updated 1 year ago

1. What's it?

In order to use Automatic Script for Android Emulator, the following command line must be installed on your Windows machine:

  • wsl

  • choco (package manager for Windows)

  • adb (Android Debug Bridge)

2. Install WSL on Windows 10/11

  1. On Windows 10/11, search: Command Prompt app

  2. Right-click on the app -> Select Run as administrator option.

  3. When the App is opened, copy & paste the following command:

wsl --install
  1. Restart your Windows to take effect -> After restarting, Windows will open the Command Prompt which asks the user to create a new Username / Password -> Follow this instruction

  2. Open the Command Prompt app again, execute:

wsl
  1. Verify that the command is successful, with no errors:

  1. Done ✅

2. Install Choco on Windows 10/11

  1. Open PowerShell with Run as Administrator

  2. Paste and run it:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
  1. Wait a few seconds for the command to complete.

  2. If you don't see any errors, you are ready to use Chocolatey! Type choco or choco -? now, or see Getting Started for usage instructions.

3. Install adb on Windows 10/11

  1. Open PowerShell with Run as Administrator

  2. Run:

choco install adb -y
  1. Verify the adb is successfully installed and there is no error

4. ✅ Done. Try to Use Android Automatic Script again on Proxyman app

5. References:

Choco Installation Guide:

https://chocolatey.org/install#individual
https://learn.microsoft.com/en-us/windows/wsl/install
https://pureinfotech.com/install-wsl-windows-11/#install_wsl2_single_command