Skip to content

Instantly share code, notes, and snippets.

@ycku
Created October 4, 2022 01:59
Show Gist options
  • Save ycku/c2528fd6f7beb0bedcf70626fbf7defa to your computer and use it in GitHub Desktop.
Save ycku/c2528fd6f7beb0bedcf70626fbf7defa to your computer and use it in GitHub Desktop.
To enable Hyper-V in Windows 11 Home
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hv.txt
for /f %%i in ('findstr /i . hv.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hv.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