Home >Computer Tutorials >Computer Knowledge >How to solve the problem that win11 does not have hyper-v option? Win11 cannot find hyper-v option problem analysis

How to solve the problem that win11 does not have hyper-v option? Win11 cannot find hyper-v option problem analysis

王林
王林forward
2024-02-29 17:25:051405browse

php editor Strawberry will help you solve the problem that the Hyper-V option cannot be found in Win11 system. Hyper-V is a virtualization tool in Windows systems, but this option may not be found in Win11. This article will introduce in detail the solution to the problem that Win11 does not have the Hyper-V option, allowing you to easily solve this problem and enjoy the convenience and efficiency brought by Hyper-V.

Win11 cannot find the hyper-v option problem analysis

1. Right-click a blank space on the desktop and select New Text Document.

How to solve the problem that win11 does not have hyper-v option? Win11 cannot find hyper-v option problem analysis

2. Enter the following command and save it

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

How to solve the problem that win11 does not have hyper-v option? Win11 cannot find hyper-v option problem analysis

#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 How to solve the problem that 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:
This article is reproduced at:rjzxw.com. If there is any infringement, please contact admin@php.cn delete