windows11家庭版安装hyper-v
作者:互联网
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.运行完毕后,重启即可。
标签:hyper,家庭版,%%,Packages,online,windows11,SystemRoot%,txt 来源: https://www.cnblogs.com/marchxd/p/16398012.html