Disabling and Enabling Hyper-V on Windows

I needed to be able to run VMWare and VirtualBox from my Windows 10 Pro machine. This machine also has Docker on it. The issue is that you can only have one Hypervisor working at a time. So Docker OR VirtualBox and VMWare. A temporary solution is to disable the Hyper-V using the following commands. Once this disabled, you can run VirtualBox and VMWare.

Disable

bcdedit /set hypervisorlaunchtype off

Reboot machine.

Enable

bcdedit /set hypervisorlaunchtype auto

Reboot machine.

Long Term Solution

A long-term solution using alternate boot commands is what I ended up using. The details can be found in this article: Docker Tip #13: Get Docker for Windows and VirtualBox Working Together.

This is for someone like me who switches more frequently than a casual user.