Skip to content
Follow
Windows

How to List Installed WSL Distros on Windows 11

Richard
Written by
Richard
Jan 26, 2023 Updated Aug 13, 2026 2 min read
How to Enable or Disable Phone Link in Windows 11
How to Enable or Disable Phone Link in Windows 11

Checking your installed WSL (Windows Subsystem for Linux) distributions on Windows 11 takes just one quick command in your terminal.

WSL is a built-in Windows feature that lets you run Linux software directly on your PC without setting up a full virtual machine.

Typing `wsl -l -v` into Command Prompt or PowerShell shows every Linux system on your computer, along with its current run state and version number.

⚡ Quick Answer

Use the command wsl -l -v in Command Prompt or PowerShell to list installed WSL distros and their status. This command shows the name, state, and WSL version for each distribution. You can also find them by opening the Linux folder in File Explorer .

Check via File Explorer

Checking via File Explorer

Another way to see your installed Linux systems involves using the built-in File Explorer .

  1. Open File Explorer on your computer.
  2. Look at the menu on the left side of the window.
  3. Click on the Linux folder.
Windows Subsystem for Linux list distros in File Explorer
Windows Subsystem for Linux list distros in File Explorer

Open File Explorer and look at the left-hand navigation pane. Click the Linux entry to view a dedicated folder for every Linux environment installed on your machine.

Windows Subsystem for Linux list distros in File Explorer list
Windows Subsystem for Linux list distros in File Explorer list

Check via Terminal

If you prefer using commands, the Terminal app provides more details about your Linux setup. Basic listing commands do not require admin privileges, though some management tasks might need them.

Open the Terminal app, which provides access to both Command Prompt and Windows PowerShell.

Understanding wsl --list vs wsl --list --verbose

Running `wsl --list` gives you a simple list of distribution names. Adding flags via `wsl --list --verbose` (or `wsl -l -v`) provides extra detail, such as whether each environment is currently running and its assigned WSL version (1 or 2).

💻Code
wsl -l -v

Expected Output:

Discover which Linux distributions are available to install from the Microsoft Store by using the `winget search <distro-name>` command. Typing `winget search ubuntu`, for instance, lists all available Ubuntu versions.

💻Code
wsl --online

Identifying the Default Distro

The distribution marked with an asterisk (*) in the list serves as your default. This version launches automatically when you type `wsl` in your terminal.

Troubleshooting Missing Distros

If a distribution fails to appear, confirm that the WSL feature is enabled. Running `wsl --status` lets you check your status. If you run into issues, make sure your PowerShell execution policy allows scripts to run by opening an admin terminal and running `Set-ExecutionPolicy RemoteSigned`.

Summary

Review your WSL distributions on Windows 11 by checking the Linux folder in File Explorer or running the `wsl -l -v` command in your terminal.

How do I list available distributions that are not yet installed?

How do I list available distributions that are not yet installed?

View a list of all Linux distributions available for download from the Microsoft Store by running the command 'wsl --online' in your terminal. This command pulls the latest list of supported distributions, helping you pick the right one for your development needs.

Can I list WSL distros from a non-admin terminal?

List installed WSL distributions using a standard, non-admin terminal. Commands like 'wsl -l' or 'wsl -l -v' do not require elevated permissions to execute, making it safe for any user to check their current Linux environment status on Windows 11.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Access Linux Files on Windows 11 Using WSL
Windows How to Access Linux Files on Windows 11 Using WSL
How to Check Windows Subsystem for Linux Version
Windows How to Check Windows Subsystem for Linux Version
How to Mount Linux File System on Windows 11 via WSL
Ubuntu Linux How to Mount Linux File System on Windows 11 via WSL
How to Access Command Prompt in Windows 11
Windows How to Access Command Prompt in Windows 11

1 Comment

Leave a Comment

Your email address will not be published. Required fields are marked *