Updated list-wsl-distros.ps1

This commit is contained in:
Markus Fleschutz 2024-09-10 16:03:05 +02:00
parent 0d3c0ce08c
commit ad73e693cb

View File

@ -1,4 +1,22 @@
& wsl.exe --list --online
" "
& wsl.exe --status
exit 0 # success
<#
.SYNOPSIS
Lists distros for Windows Subsystem for Linux
.DESCRIPTION
This PowerShell script lists available Linux distributions for Windows Subsystem for Linux (WSL).
.EXAMPLE
PS> ./list-wsl-distros.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
& wsl.exe --list --online
" "
& wsl.exe --status
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}