Created
September 15, 2026 06:34
-
-
Save arter97/1fcdf60e11995fd76d935fa81dc5deaf to your computer and use it in GitHub Desktop.
WSL Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Needs cmd with administrative privileges | |
| ( | |
| dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
| dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart | |
| ) | |
| # Reboot! | |
| wsl --update | |
| wsl --set-default-version 2 | |
| wsl --install -d Ubuntu-26.04 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment