Windows 11 Home Chinese version does not have Hyper-V

Problem Description:

Windows 11 Home Chinese version does not have Hyper-V

Screenshot of the problem:

insert image description here

problem causes:

solution:

Reference address: https://blog.csdn.net/Johnston_man/article/details/124808923

1. Create a new Hyper-V.cmd file and add the following code content;

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. Run Hyper-V.cmd as an administrator, and select "Yes" in the pop-up dialog box;
4. After the command window is processed, enter: Y at the end, and the computer will automatically restart and update the configuration;
5. After restarting You can see that Hyper-V has been installed.
insert image description here

Guess you like

Origin blog.csdn.net/qq_37515374/article/details/129642068