Enable Hyper-V
@echo off pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >List.txt
for /f %i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%i"
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause
Disable Hyper-V
Dism /online /Disable-Feature /FeatureName:Microsoft-Hyper-V /Remove
5/5 - (1 vote)