Activar Hyper-V en Windows Home

Se me ha dado el caso que necesitaba tener Hyper-v activado en equipos con Windows home.

Para no tener que cambiar a Windows pro podemos usar este script :

pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyperv.txt
for /f %%i in ('findstr /i . hyperv.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

solo hay que introducir esto en un archivo .bat y ejecutarlo como administrador.

Fuente

Deja un comentario