php editor Xinyi provides you with a solution to the problem of crash and freeze of Win11 running VMware virtual machine. With the release of Win11, many users have encountered crashes and freezes when using VMware virtual machines. This not only affects work and study efficiency, but also causes trouble to users. In this article, we will introduce you to some solutions to help you solve the problem of Windows 11 crashing and freezing when running VMware virtual machines, making your experience smoother.
Method 1: Hyper-V solution
1. Open Control Panel-Programs-Enable or turn off Windows functions. You may find that there is no Hyper-V on your computer, and even the vm cannot be used ( If yours is open, just check it as shown below and restart the computer). If there is no Hyper-V to install, you can go to step 1.2 below to install it.
2. Install Hyper-V on the system, create a new notepad, enter the code as follows, and then change the file name and suffix to Hyper-V.cmd
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. Right-click to run as administrator and restart The computer will then find that it has been installed.
Method 2: Disable Device Guard
1. Go directly to the registry. The command to bring up the registry is regedit.
2. Open Run, enter regedit, call up the registry, find Device Guard, and change the default value to 0, as shown in the figure.
Method 3: Upgrade the version of virtual machine VMware pro
Because the bug in version 15 was fixed, 16 was released Just update it!
Method 4: Modify configuration
The above is the detailed content of Solution to crash and freeze of Win11 running VMware virtual machine. For more information, please follow other related articles on the PHP Chinese website!