If you develop Android apps regularly, you already know that AVD Manager (Android Virtual Device Manager) is an essential tool. It allows you to create, configure, and run Android emulators to test your apps without a physical phone.
Normally, AVD Manager is accessed from within Android Studio, but what if you want to launch it without opening the full IDE? Maybe you just want to start a virtual device quickly for testing or debugging, or perhaps Android Studio won’t open at all.
In this guide, we’ll show you how to launch the AVD Manager directly on your Windows 11 PC — without having to start Android Studio first.
What Is AVD Manager?
The AVD Manager is a standalone utility that comes bundled with the Android SDK. It lets you:
- Create new virtual Android devices (emulators).
- Configure device specs like RAM, screen size, and API level.
- Launch existing emulators directly.
- Delete or modify existing Android Virtual Devices.
The AVD Manager can be accessed via command line tools or Graphical Interface — even if Android Studio is not running.
Method 1: Launch AVD Manager Using Command Line (CMD or PowerShell)
The simplest and fastest way to open the AVD Manager without Android Studio is by using Command Prompt or Windows PowerShell.
Here’s how you can do it:
- Press Windows + S, type cmd, and select Run as Administrator.
- Navigate to your Android SDK tools directory using the following command:
cd C:\Users\<YourUsername>\AppData\Local\Android\Sdk\tools\binNote: Replace<YourUsername>with your Windows profile name. If your SDK is installed in a different path, adjust it accordingly. - Once inside the
binfolder, type the following command:avdmanagerThis will show a list of available AVD commands like create, list, or delete. - To list your existing virtual devices, run:
avdmanager list avd - To create a new AVD from the command line, use:
avdmanager create avd -n MyPixelAVD -k "system-images;android-34;google_apis;x86_64" -d pixel_8
Pro Tip: You can use SDK Manager (sdkmanager) to install or update system images before creating AVDs.
Method 2: Launch Emulator Directly Without AVD Manager
If you simply want to run an existing emulator (without using the graphical AVD Manager), you can launch it directly from the SDK’s emulator directory.
- Open Command Prompt or PowerShell.
- Navigate to the Android SDK’s emulator folder:
cd C:\Users\<YourUsername>\AppData\Local\Android\Sdk\emulator - To list all available emulators:
emulator -list-avdsExample output:Pixel_8_API_35 Nexus_5X_API_33 - To launch an emulator, type:
emulator -avd Pixel_8_API_35This will start your Android Virtual Device immediately — no need to open Android Studio.
Tip: You can create a desktop shortcut for this command if you frequently use the same emulator.
Method 3: Use Android SDK’s avdmanager.bat File
If you prefer a GUI-like interface but want to skip Android Studio, you can directly run the AVD Manager executable file.
- Navigate to the following directory in File Explorer:
C:\Users\<YourUsername>\AppData\Local\Android\Sdk\tools\bin - Locate the file named
avdmanager.bat. - Double-click it to execute.
- A command prompt window will open and show available AVD commands.
Note: The graphical version of AVD Manager is part of Android Studio, but the SDK command-line avdmanager.bat tool gives full control for advanced users.
Method 4: Create a Custom Batch File to Launch Emulator Automatically
If you use a specific emulator frequently, you can create a simple batch file to start it instantly with a double-click.
Here’s how:
- Open Notepad.
- Paste the following lines (adjust your username and AVD name):
@echo off cd C:\Users\<YourUsername>\AppData\Local\Android\Sdk\emulator emulator -avd Pixel_8_API_35 - Save the file as:
Launch_AVD.bat - Double-click it anytime you want to start your virtual device without Android Studio.
Optional: Right-click the .bat file → Send to → Desktop (create shortcut) for easier access.
Method 5: Use SDK Manager (If Installed Separately)
If you’ve installed the Android SDK command-line tools separately (not through Android Studio):
- Download the SDK Command-line Tools package from the official site: https://developer.android.com/studio#command-tools
- Extract it to a folder like:
C:\Android\cmdline-tools\latest - Add this path to your system environment variables under
Path. - Now you can use
avdmanagerandemulatorcommands globally from any terminal window.
This method gives you a lightweight setup for managing AVDs without installing Android Studio at all.
Method 6: Launch AVD Manager from Android Studio’s Bin Folder (Alternative Trick)
Even though Android Studio isn’t open, you can still trigger its internal AVD Manager directly:
- Navigate to:
C:\Program Files\Android\Android Studio\bin - Find and double-click studio64.exe with an argument to open AVD Manager:
studio64.exe --avd-manager - This will open AVD Manager without fully loading your projects or Android Studio’s editor interface.
Wrapping Up
You don’t need to launch the entire Android Studio IDE just to use the AVD Manager. By using command-line tools like avdmanager and emulator, you can easily create, list, and launch Android Virtual Devices directly from Windows 11.
This not only saves time but also helps when Android Studio isn’t working or you prefer a lightweight workflow.
Whether you’re debugging an app, testing UI layouts, or automating builds — you can now run your virtual Android devices anytime, without starting Android Studio first.