Skip to content

Instantly share code, notes, and snippets.

@sachith-1
Created November 6, 2021 18:46
Show Gist options
  • Save sachith-1/713854035a4c4b129b0ac58dc9f75b9c to your computer and use it in GitHub Desktop.
Save sachith-1/713854035a4c4b129b0ac58dc9f75b9c to your computer and use it in GitHub Desktop.
Simple script to enable hyper-v for windows 10 home
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hv.txt
for /f %%i in ('findstr /i . hyper-v.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