Forked from humbertodias/gist:e44b9413f22e3990118306f189cbbf45
Created
August 12, 2019 09:29
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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