8 lines
382 B
PowerShell
8 lines
382 B
PowerShell
################################################################################
|
|||
|
|
## File: Install-WSL.ps1
|
||
|
|
## Desc: Install Windows Subsystem for Linux
|
||
|
|
################################################################################
|
||
|
|
|
||
|
|
Write-Host "Install Windows Subsystem for Linux"
|
||
|
|
|
||
|
|
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -NoRestart
|