====== WSL 2: Install ======
The Official Docs are way too long, so here is the compressed version.(([[https://learn.microsoft.com/de-de/windows/wsl/install-manual|Official Docs]]))
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
shutdown /r /t 0
###
curl.exe https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi -O
./wsl_update_x64.msi
wsl --set-default-version 2
shutdown /r /t 0
###
wsl --install -d Debian
### Windows 11
Es scheint, dass bei Windows 11 nicht mehr alle diese Steps notwendig sind
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
shutdown /r /t 0
###
wsl --update
wsl --set-default-version 2
shutdown /r /t 0
###
wsl --install -d Debian