How to Disable Hyper-V in Windows 10 and Windows 11
Step-by-step guide to disabling Hyper-V, VBS and related virtualization components in Windows.
Many programs require Hyper-V and related virtualization components to be disabled. Hyper-V can conflict with other software that uses hardware virtualization. Below are all the ways to fully disable Hyper-V in Windows 10 and Windows 11.
Method 1: Via Windows Features
- Press Win + R, type
optionalfeatures, press Enter. - In the opened window, uncheck the following components (if enabled):
- Hyper-V (including all sub-items)
- Virtual Machine Platform
- Windows Hypervisor Platform
- Click OK and wait for changes to apply.
- Restart your computer.
Method 2: Via Command Prompt (CMD)
Open Command Prompt as Administrator and run:
dism /online /disable-feature /featurename:Microsoft-Hyper-V-All /norestart
dism /online /disable-feature /featurename:VirtualMachinePlatform /norestart
dism /online /disable-feature /featurename:HypervisorPlatform /norestartAfter running all commands, restart your computer.
Method 3: Disable via bcdedit
Even after disabling the components, the hypervisor may remain active. To guarantee it's disabled:
- Open Command Prompt as Administrator.
- Run the command:
bcdedit /set hypervisorlaunchtype off - Restart your computer.
To re-enable Hyper-V later, use:
bcdedit /set hypervisorlaunchtype autoAdditional: Disable VBS (Virtualization Based Security)
Windows may use virtualization for security (VBS / Credential Guard). To fully disable:
- Press Win + R, type
gpedit.msc(Pro/Enterprise only). - Navigate to: Computer Configuration → Administrative Templates → System → Device Guard.
- Open "Turn On Virtualization Based Security" and set to "Disabled".
For Windows Home (no gpedit) — via Registry:
- Press Win + R, type
regedit. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard. - Set EnableVirtualizationBasedSecurity to 0.
- Restart your computer.
How to Verify Hyper-V is Disabled
- Press Win + R, type
msinfo32. - In System Information, look for the line: "A hypervisor has been detected. Features required for Hyper-V will not be displayed".
- If this line is absent — Hyper-V is successfully disabled.