Windows – VMWare Player is not working after installing Hyper-V on windows 8 Pro

hyper-vsimulatorvmware-playerwindows 8

I was using BB10 simulator on windows 8 but last night I installed windows Phone 8 development environment and it also installed Hyper-V (or activated it). Now I am unable to run BB10 simulator in VMWare Player. Wondering how I can run them both at the same time or both on the same machine?

Best Answer

I have got a solution. This method will allow me use one technology at a time (which is my current requirement)

You can disable Hyper-V without uninstalling it. Start a command prompt with administrator rights and execute the following command:

// to disable hyper-v
bcdedit /set hypervisorlaunchtype off

// to enable hyper-v
bcdedit /set hypervisorlaunchtype auto

Both Operations require restarting your computer.

Reference: https://forums.virtualbox.org/viewtopic.php?f=6&t=41258#p236620

Note: I also found this very helpful when using intel x86 android emulator because without this, it was not possible to use it.

Related Question