Skip to content

Instantly share code, notes, and snippets.

@matthiasbalke
Last active January 6, 2025 00:50
Show Gist options
  • Save matthiasbalke/9d541e3e745ebbe01e709d2825fa51ed to your computer and use it in GitHub Desktop.
Save matthiasbalke/9d541e3e745ebbe01e709d2825fa51ed to your computer and use it in GitHub Desktop.
Windows 11 Home: Install Hyper-V-Manager
# https://www.netzwelt.de/anleitung/198230-windows-11-home-pro-hyper-v-installieren-aktivierenso-gehts.html
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