Bootstrap

Windows11家庭版没有Hyper-v怎么办

桌面新建一个文件test.cmd,然后把下面的代码输入进文件里。

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 

然后管理员权限运行,最后安装完毕后重启计算机!就搞定了!

;