Skip to content

Instantly share code, notes, and snippets.

@dayvsonlima
Created December 7, 2023 16:24
Show Gist options
  • Save dayvsonlima/77119bb2001475a64aff617bb2c2399a to your computer and use it in GitHub Desktop.
Save dayvsonlima/77119bb2001475a64aff617bb2c2399a to your computer and use it in GitHub Desktop.
Enable WSL 2 on windows Home
# save this file as some-name.bat and run as administrator
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment