To turn off Hyper-V on Windows 11 so other programs can run normally, use one of these methods.
Method 1 – Turn off Hyper-V hypervisor (keeps components installed)
This is useful if Hyper-V VMs are not needed temporarily.
- Open Command Prompt as Administrator.
- Run:
bcdedit
- Under Windows Boot Loader, note the value of identifier (for example,
{current}).
- Run:
bcdedit /set {identifier} hypervisorlaunchtype off
Replace {identifier} with the value from step 3.
- Restart the PC.
Hyper-V will be disabled and Hyper-V virtual machines cannot be started while this is off.
To make it easy to switch Hyper-V on and off at boot, create a second boot entry:
- Open Command Prompt as Administrator.
- Run:
bcdedit /copy {default} /d "Hypervisor Off"
Note the new identifier returned.
- Run:
bcdedit /set {identifier} hypervisorlaunchtype off
- Restart and choose Hypervisor Off from the boot menu when Hyper-V must be disabled.
Method 2 – Disable the Hyper-V feature (uninstalls Hyper-V components)
Use this if Hyper-V is no longer needed at all.
- Open Control Panel.
- Select Programs → Programs and Features.
- Select Turn Windows features on or off.
- Clear the Hyper-V checkbox.
- Select OK and restart the PC.
Note: Other components that depend on Hyper-V may have reduced or no functionality after this.
If only the hypervisor layer needs to be off (for example, to run another virtualization app):
Using Control Panel
- Open Control Panel → Programs and Features.
- Select Turn Windows features on or off.
- Expand Hyper-V → Hyper-V Platform.
- Clear the Hyper-V Hypervisor checkbox.
- Select OK and restart.
Using PowerShell (Admin)
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Hypervisor
Restart when prompted.
Using DISM (Admin Command Prompt)
DISM /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-Hypervisor
Restart when prompted.
If the program still does not work after Hyper-V is disabled, also check and turn off features that depend on Hyper-V, such as Memory Integrity and Credential Guard, following the guidance in the linked articles in the references.
References: