When installing the IntelHaxm-Android package I get the following error despite Hyper-V being disabled:
From the image it is visible that hyper-v is disabled. Processor is Intel i7-6700 that definitely supports VT-x, and virtualization is enabled in BIOS.
Any ideas on how to solve this problem?
Hyper-V prevents running HAXM on your computer. You have two choices:
Open PowerShell window as Administrator and execute command:
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Restart computer and voila - you can use HAXM or VirtualBox.
Clone existing configuration (with Hyper-V installed and enabled) and give it meaningful description:
BCDEDIT /copy {current} /d "Hyper-V enabled"
Disable Hyper-V in current configuration:
BCDEDIT /set {current} hypervisorlaunchtype off
Rename current configuration:
BCDEDIT /set {current} description "Hyper-V disabled"