1、打开电脑hyper-v,方法控制面板-》程序和功能-》启用或关闭windows功能
选中hyper-v
有些电脑这里是没有这个hyper-v选项的,则执行如下操作:
保存如下代码为.bat格式,以管理员身份运行,重启后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