Home >System Tutorial >Windows Series >What should I do if win11 does not have hyper v option? Win11 cannot find hyper v option problem analysis
Can’t find the Hyper-V option in Win11? Please read carefully! Many users are facing the problem of not finding the Hyper-V option while using Windows 11 systems. In this regard, PHP editor Xigua provides you with a detailed solution. This article will guide you step by step to successfully enable Hyper-V option in Win11. Read on to learn the exact steps to easily resolve your issue.
Analysis of the problem that win11 cannot find the hyper-v option
1. Right-click on a blank space on the desktop and select New "Text Document".
2. Enter the following command and save
pushd “%~dp0”
dir /b %SystemRoot%servicingPackages* Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package: "%SystemRoot%servicingPackages%%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 just double-click to run the file to enable hyper-v.
The above is the detailed content of What should I do if win11 does not have hyper v option? Win11 cannot find hyper v option problem analysis. For more information, please follow other related articles on the PHP Chinese website!