1.在Win10搜索框,搜索PowerShell
2.打开 Windows PowerShell,输入 systeminfo 命令
如果四个全为 “是”,则表示支持 Hyper-V 功能
3.桌面新建一个记事本文件,将它的后缀改成bat,复制下面的代码
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
4、右键选择:以管理员身份运行。代码执行结束后,重启电脑就可以了。