Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save r37r0m0d3l/6da9dca2df5f50ea5f48d8b9bf74be2d to your computer and use it in GitHub Desktop.
Save r37r0m0d3l/6da9dca2df5f50ea5f48d8b9bf74be2d 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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment