Skip to content

List-WslDistros

Lists distros for Windows Subsystem for Linux

try {
	if ($IsLinux -or $IsMacOS) { throw "Requires Windows Subsystem for Linux (WSL)" }

	& wsl.exe --list --verbose
	" "
	& wsl.exe --list --online
	" "
	& wsl.exe --status
	exit 0 # success
} catch {
	"?? ERROR: $($Error[0]) (script line $($_.InvocationInfo.ScriptLineNumber))"
        exit 1
}

This script has no configurable parameters.

An interactive directory of PowerShell scripts.