Home  >  Article  >  System Tutorial  >  What should I do if win11 does not have hyper v option? Win11 cannot find hyper v option problem analysis

What should I do if win11 does not have hyper v option? Win11 cannot find hyper v option problem analysis

PHPz
PHPzOriginal
2024-09-13 12:27:37313browse

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".

win11没有hyper v选项怎么办 win11找不到hyper v选项问题解析

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

win11没有hyper v选项怎么办 win11找不到hyper v选项问题解析

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn