windows10家庭版装Hyper-V方法:
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.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
将如上复制到.cmd文件中执行,完成hyper-V安装。
关闭方法:
直接把上面勾去掉,然后重启,如果不可以的话,看下面操作。
以管理员身份运行命令提示符
如下是关闭命令:
bcdedit / set hypervisorlaunchtype off
如下是启动命令:
bcdedit / set hypervisorlaunchtype auto