just a bit of background about what I'm trying to accomplish. So I have a personal computer at home running on AMD 3600x (16GB ram). I migrated a virtual machine into my pc so that I can do my mobile development there. But to my dismay upon migrating, I came upon this error "Call to WHvSetupPartition failed: ERROR_SUCCESS (Last=0xc000000d/87) (VERR_NEM_VM_CREATE_FAILED)." and I searched around and found this issues forum in GitHub: https://github.com/kubernetes/minikube/issues/4587 The fix was running this command into cmd with admin privileges:
bcdedit /set hypervisorlaunchtype off
It fixed my problem, however it made me unable to run any of my android emulators' that I created using android studio either inside the VM or from the computer that I'm using itself. So how do I fix this? Or is this unfixable?
There is a workaround to use both Hyper-V and VirtualBox.
"C:\path\to\Virtualbox\VBoxManage" setextradata global "VBoxInternal/NEM/UseRing0Runloop" 0
This command will allow VirtualBox to use Hyper-V backend or something like that. But it really decrease the VirtualBox performance. I, myself prefer the hyper-v off/auto. For reference read this article https://www.networkreverse.com/2020/06/virtualbox-VERR-NEM-VM-CREATE-FAILED.html
User contributions licensed under CC BY-SA 3.0