Home >System Tutorial >Windows Series >How to solve the problem of hyper-v missing in win11 home version
Installing the Android subsystem in win11 requires turning on the hyper-v service, but some users find that their win11 home version does not have hyper-v. In fact, we can solve the problem by running commands.
1. First, we right-click on a blank space on the desktop and select New "Text Document"
2. Then enter the following command and save.
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
3. After saving, rename the text document and change the suffix to ".cmd"
4. Then we only need to double-click to run the file to enable hyper-v.
The above is the detailed content of How to solve the problem of hyper-v missing in win11 home version. For more information, please follow other related articles on the PHP Chinese website!