Skip to content

Instantly share code, notes, and snippets.

@humbertodias
Created December 30, 2016 19:29
Show Gist options
  • Save humbertodias/e44b9413f22e3990118306f189cbbf45 to your computer and use it in GitHub Desktop.
Save humbertodias/e44b9413f22e3990118306f189cbbf45 to your computer and use it in GitHub Desktop.
Docker for Windows - Hardware assisted virtualization and data execution protection must be enabled in the BIOS
Hardware assisted virtualization and data execution protection must be enabled in the BIOS
http://stackoverflow.com/questions/39684974/docker-for-windows-error-hardware-assisted-virtualization-and-data-execution-p
If the features described are enabled the problem is with Hyper-V that is disabled or Hypervisor agent not running
Open PowerShell as administrator and
a) Enable Hyper-V with
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
or
b) Enable Hypervisor with
bcdedit /set hypervisorlaunchtype auto
Now restart the system and try again.
EDIT
If the problem persist probably Hyper-V on your system is corrupted, so
1) go in control panel ->[Programs] -> [Windows Features] and completely uncheck all Hyper-V related components. Restart the system.
2) Enable Hyper-V again. Restart.
@maruansampaio
Copy link

I try everything but nothing work, I do every steps but still showing the same error, I don't know what I supposed to do to solve this problem, someone can help me?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment