How to disable Hyper-V for Windows 11

March 11, 2026

Microsoft’s Hyper-V virtualization platform offers a compelling advantage for Windows 11 users looking to run virtual machines on their systems. This technology not only enhances the user experience by enabling multiple operating systems to coexist on a single machine but also fortifies the security of Windows 11 by establishing an isolated virtual environment that acts as a root of trust.

However, IT administrators may find themselves in a position where they need to disable Hyper-V due to compatibility issues with certain applications on their organization’s managed computers. Thankfully, several methods exist for disabling Hyper-V, allowing for flexibility based on specific operational needs.

What is Hyper-V?

Hyper-V is a hardware virtualization platform integrated into select editions of Windows, including Windows 11 Professional, Enterprise, and Education. It allows a Windows computer to host multiple virtual machines (VMs), each operating within its own virtual space. This platform is built on the Windows hypervisor, a type 1 hypervisor that runs directly on hardware, distinguishing it from software-based alternatives like VMware Workstation or Oracle VirtualBox.

By creating an abstraction layer over the computer’s hardware, Hyper-V enables VMs to share resources such as CPU, memory, storage, and networking. Each VM functions independently, capable of running guest operating systems like Windows Server or Red Hat Enterprise Linux, along with their respective applications. Hyper-V also boasts features such as dynamic memory allocation, software-defined networking, saved checkpoints for easy rollback, and a user-friendly graphical interface for VM management.

Despite its many advantages, Hyper-V can sometimes cause conflicts with other applications, particularly in the following scenarios:

  • Third-party virtualization software, such as VMware Workstation and Oracle VirtualBox, may not function correctly when Hyper-V is enabled, as the hardware virtualization extensions are not designed for sharing.
  • High-precision applications that demand minimal latency may experience performance degradation when Hyper-V is active, given that the host OS operates atop the Hyper-V layer.
  • Some applications might encounter driver conflicts or require direct hardware access, leading to operational issues when Hyper-V is enabled.
  • Even without deployed VMs, Hyper-V incurs overhead, potentially impacting the performance of applications running on a Windows 11 machine.

If these challenges arise, administrators may need to disable Hyper-V on their Windows 11 systems. Additionally, they might consider disabling the Virtual Machine Platform and Windows Hypervisor Platform, as these are also integrated virtualization technologies. It’s important to note that disabling Hyper-V may necessitate turning off security features reliant on it, such as virtualization-based security (VBS), memory integrity, Device Guard, and Credential Guard. For instance, Microsoft advises disabling Hyper-V, Device Guard, and Credential Guard when utilizing third-party virtualization software on Windows 11.

However, administrators should approach the decision to disable Hyper-V with caution, as certain security features depend on the hypervisor. Disabling it could expose systems to additional risks, making careful consideration and planning essential to maintain security integrity.

How to disable Hyper-V on Windows 11

Administrators have various options for disabling Hyper-V in Windows 11. They can choose to do this directly on individual computers or utilize a centralized management platform for multiple systems. The method selected will depend on the specific circumstances, with four primary options available:

  • Utilize the Windows Features dialog to disable Hyper-V.
  • Execute a PowerShell command or script to disable Hyper-V.
  • Implement a Deployment Image Servicing and Management (DISM) command or script to disable Hyper-V.
  • Use a boot configuration data (BCD) edit command to disable Hyper-V, typically as a temporary measure.

For those needing to disable Windows security features that rely on Hyper-V, modifications can be made through Group Policy or Windows Registry settings, or by configuring necessary policies in Intune.

Use Windows features to disable Hyper-V

To disable Hyper-V directly via the Windows Features dialog, administrators can follow these steps:

  1. Open Control Panel and navigate to Programs > Turn Windows features on or off.
  2. In the Windows Features dialog, uncheck the boxes for:
    • Hyper-V, including all subcomponents.
    • Virtual Machine Platform.
    • Windows Hypervisor Platform.
  3. Click OK.
  4. Restart the computer.

Use PowerShell to disable Hyper-V

Another method involves using PowerShell to disable Hyper-V and its associated features. Administrators can run a command that utilizes the Disable-WindowsOptionalFeature cmdlet, which is part of PowerShell’s DISM module:

  1. Open PowerShell as an administrator.
  2. Execute the following command:
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All, HypervisorPlatform, VirtualMachinePlatform
  1. Restart the computer, regardless of whether prompted.

Use the DISM command-line tool to disable Hyper-V

The DISM command-line tool can also be employed to disable Hyper-V and its related features. Administrators should run a command that includes:

  1. Open Command Prompt as an administrator.
  2. Run the following command:
dism /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-All /FeatureName:HypervisorPlatform /FeatureName:VirtualMachinePlatform
  1. Restart the computer, whether prompted or not.

Use the bcdedit command-line utility to disable Hyper-V

The bcdedit utility allows administrators to manage BCD files on Windows systems, including preventing Hyper-V from loading at startup. The command should set the hypervisorlaunchtype option to off:

  1. Open Command Prompt as an administrator.
  2. Run the following command:
bcdedit /set hypervisorlaunchtype off
  1. Restart the computer.

Use Group Policy to disable Virtualization Based Security

To disable VBS along with other virtualization features, administrators can use Group Policy:

  1. Open the Local Group Policy Editor using the gpedit.msc snap-in.
  2. Navigate to Computer Configuration > Administrative Templates > System > Device Guard.
  3. Double-click the Turn on Virtualization Based Security setting, select Disabled, and click OK.
  4. Restart the computer.

Use the Windows Registry to disable VBS or Credential Guard

Editing the Windows registry is another option for disabling VBS:

  1. Open the Registry Editor using regedit.
  2. Navigate to HKEYLOCALMACHINESYSTEMCurrentControlSetControlDeviceGuard.
  3. Delete the EnableVirtualizationBasedSecurity and RequirePlatformSecurityFeatures keys.
  4. Restart the computer.

For disabling Credential Guard, navigate to HKEYLOCALMACHINESYSTEMCurrentControlSetControlLsa and set the LsaCfgFlags key value to 0.

Disabling Hyper-V on multiple managed computers

When managing multiple Windows 11 computers, administrators may prefer to disable Hyper-V across the board from a centralized management platform. This typically involves creating a PowerShell script and executing it on the managed devices. While it’s possible to run a DISM command, PowerShell is often favored for its compatibility with mobile device management platforms like Microsoft Intune or Citrix Endpoint Management.

For organizations using Active Directory, creating a Group Policy Object to schedule the PowerShell script can streamline the process. In scenarios where customized Windows 11 images are deployed, DISM can be utilized to disable Hyper-V and related features on the offline image.

Regardless of the method chosen, testing the process in a controlled environment is crucial to ensure that the desired outcomes are achieved without compromising security or application functionality.

Robert Sheldon is a freelance technology writer. He has written numerous books, articles, and training materials on a wide range of topics, including big data, generative AI, 5D memory crystals, the dark web, and the 11th dimension.

Winsage
How to disable Hyper-V for Windows 11