Windows10家庭版添加Hyper-V

一 新建一个文本,将下面的代码复制

image.png
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

二 将文件另存为Hyper-V.cmd

image.png

三 “以管理员身份运行”运行 Hyper-V.cmd,Windows命令处理,我们等待处理完成以后,在最末处输入:Y,电脑自动重启,进行配置更新。注意:不能关闭计算机。

四 结果

image.png

你可能感兴趣的:(Windows10家庭版添加Hyper-V)