Windows Home Edition does not have a solution for Hyper-V

Windows Home Edition does not have a solution for Hyper-V

Windows 11 Home Edition does not have it , but it can be added manually, just hyper-vmodify the suffix of the following script.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

Then run with administrator

Execution diagram:

insert image description here

Restart the system, add successfully

insert image description here

Guess you like

Origin blog.csdn.net/Gherbirthday0916/article/details/130152096