How to List Installed WSL Distros on Windows 11

Richard
Written byRichardTech Writer, IT Professional
Jan 26, 2023 Updated Apr 16, 2026 3 min read Reviewed Mar 19, 2026

This guide explains how to see which Linux versions you have installed on your Windows 11 computer.

Windows Subsystem for Linux allows you to run Linux tools directly on Windows. You do not need to install complex extra software to make this work.

Why check your Linux versions?

You may need to know which versions are on your computer to manage space or check if your software is up to date.

What happens when done?

You will have a clear list of every Linux distribution currently installed on your system.

Check via File Explorer

The easiest way to see your installed Linux systems is by 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

You will see a folder for every Linux version installed on your device.

Windows Subsystem for Linux list distros in File Explorer list

Check via Terminal (Admin Privileges Required)

If you prefer using commands, you can use the Terminal app to get more details about your Linux setup. Note: These commands may require you to run the Terminal as an administrator.

Open the Terminal app to access Command Prompt or Windows PowerShell and type the following commands:

To see all installed versions:

wsl --list --all

or

wsl -l

To see more details like the status and version number:

wsl --list --verbose

or

wsl -l -v

To see only the versions that are currently running:

wsl --list --running

or

wsl -l --running

Windows Subsystem for Linux list distros in terminal

Summary

You can view your installed Linux distributions quickly by opening the Linux folder in File Explorer. For more technical details, use the wsl --list command in your Terminal. Both methods help you keep track of your Linux environment on Windows 11.

How can I see all installed WSL distros on Windows 11?

You can list all installed WSL distros by opening File Explorer and navigating to the Linux folder in the left navigation pane. Alternatively, you can use the command 'wsl –list –all' in the Command Prompt or PowerShell.

What command do I use to list WSL distros with additional details?

To list WSL distros along with additional details, use the command 'wsl –list –verbose' or its shorthand 'wsl -l -v' in the Terminal. This will provide you with information about the version and status of each installed distro.

Is there a way to see only the running WSL distros?

Yes, you can view only the running WSL distros by using the command 'wsl –list –running' or 'wsl -l –running' in the Terminal. This will show you a list of currently active distributions.

Can I access my WSL distros through File Explorer?

Absolutely! You can access your installed WSL distros through File Explorer by clicking on the Linux folder in the left navigation pane. This provides a user-friendly way to view your installed distributions.

What is the Windows Subsystem for Linux (WSL)?

The Windows Subsystem for Linux (WSL) allows developers to run a GNU/Linux environment directly on Windows without the need for a virtual machine or dual-boot setup. It includes most command-line tools, utilities, and applications, making it easier to develop and test Linux applications on Windows.
Richard2457 articles

About the Author

Richard

Tech Writer, IT Professional

Richard, the owner and lead writer at Geek Rewind, is a tech enthusiast passionate about simplifying complex IT topics. His years of hands-on experience in system administration and enterprise IT operations have honed his ability to provide practical insights 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.

Expertise:Windows 11Ubuntu LinuxCMSApps and Browsers
View all articles by Richard →

Categories:

Tags:

One response to “How to List Installed WSL Distros on Windows 11”

  1. […] When the Windows Terminal app opens, run the commands below to list the currently installed distros. […]

Leave a Reply

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