Disabling Hyper-V

To disable Hyper-V in Windows, follow these steps:

  1. Open Windows PowerShell as an administrator. You can do this by typing "PowerShell" into the Windows search bar and selecting "Run as administrator" next to it.

  2. Once PowerShell is open, enter the following command and press Enter:

vbnetCopy codebcdedit /set hypervisorlaunchtype off

  1. Next, enter the following command and press Enter:

cssCopy codeDisable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All

You may receive an error message stating "Disable-WindowsOptionalFeature: Feature name Microsoft-Hyper-V-All is unknown." This is normal and can be ignored. However, if you receive a success message, that is also normal.

Last updated