PowerShell/Scripts/install-wsl.ps1

39 lines
1017 B
PowerShell
Raw Normal View History

2021-09-11 11:37:22 +02:00
<#
2021-08-02 20:45:34 +02:00
.SYNOPSIS
install-wsl.ps1
.DESCRIPTION
2021-08-29 17:50:03 +02:00
Installs Windows Subsystem for Linux (WSL) - needs admin rights.
2021-08-02 20:45:34 +02:00
.EXAMPLE
PS> .\install-wsl.ps1
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-08-02 20:45:34 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
2021-09-11 11:37:22 +02:00
#Requires -RunAsAdministrator
2021-08-02 20:45:34 +02:00
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
if ($false) {
& wsl --install
} else {
& dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
& dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
& wsl --set-default-version 2
}
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ installed Windows Subsystem for Linux (WSL) in $Elapsed sec"
" NOTE: reboot now, then visit the Microsoft Store and install a Linux distribution (e.g. Ubuntu, openSUSE, SUSE Linux, Kali Linux, Debian, Fedora, Pengwin, or Alpine)"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}