Created
October 28, 2025 20:11
-
-
Save empjustine/7d07023a75153066dc3a7c89ba12b884 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env pwsh | |
| #dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
| #dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart | |
| #wsl.exe --update | |
| #wsl --set-default-version 2 | |
| #wsl --install FedoraLinux-42 | |
| Enable-WindowsOptionalFeature -FeatureName Containers-DisposableClientVM -All -Online | |
| Enable-WindowsOptionalFeature -FeatureName Microsoft-Windows-Subsystem-Linux,VirtualMachinePlatform -All -Online | |
| wsl --install | |
| # wsl --update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment