Skip to content

Instantly share code, notes, and snippets.

@ichadhr
Last active June 28, 2024 15:34
Show Gist options
  • Save ichadhr/eb8bfb5ceea33534a243029acae11139 to your computer and use it in GitHub Desktop.
Save ichadhr/eb8bfb5ceea33534a243029acae11139 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