Skip to content

Instantly share code, notes, and snippets.

@Issykul
Forked from ichadhr/Disable_Enable.md
Last active December 8, 2022 20:37
Show Gist options
  • Save Issykul/57e4640fa091dd5e0672fd5ef1b68ade to your computer and use it in GitHub Desktop.
Save Issykul/57e4640fa091dd5e0672fd5ef1b68ade to your computer and use it in GitHub Desktop.
Disable/Enable Hyper-V and VT-X

If you run bcdedit with no arguments, you should see a property called hypervisorlaunchtype. This will be set to off or auto.

To disable Hyper-V in order to use VirtualBox, open a command prompt as administrator and run the command:

bcdedit /set hypervisorlaunchtype off

You’ll need to reboot, but then you’ll be all set to run VirtualBox. To turn Hyper-V back on, run:

bcdedit /set hypervisorlaunchtype auto

and then reboot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment