1.将一下代码添加到记事本文件中,并另存为hyper.md。
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
2.右键以管理员身份运行,遇见判断全部选是或者Y。
3.运行完毕后,重启即可。
原创文章,作者:dweifng,如若转载,请注明出处:https://blog.ytso.com/269457.html