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.cmd,右键编辑,将上面内容粘贴,然后保存。
右键,以管理员身份运行,等待一段时间
按下Y 重启。
打开windows功能
题外话,在通过hyper-v来安装虚拟机的时候碰到以下几个情况:
A. 安装win10 或centos等其他系统的时候,提示 the boot loader failed
.
解决方法:在hyper-v 启动虚拟机的时候,按住一个键
,一直按,等待一会就会引导安装系统了。
B. 解决了第一个但是centos还是不行,报错 The image hash and certificate are not allowed DB
.
解决方法:取消安全启动。设置->安全->取消启用安全启动。
转载请注明出处: https://chrunlee.cn/article/win10-install-hyper-v.html