After installing Docker, VirtualBox does not work

After installing Docker, a warning came out that VirtualBox would stop working, removed Docker, as now back on VirtualBox. In the Bios, Virtualization (Hyper-V) is enabled.

Error code in the virtualbox: Failed to open session for IE10 - Win7 VM.

VT-x is not available (VERR_VMX_NO_VMX).

Error code: E_FAIL (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed}

Author: Артур, 2017-09-26

1 answers

The answer is-I did it, it worked!

  1. Remove the Hyper-V component via PowerShell: Disable-WindowsOptionalFeature-Online-FeatureName Microsoft-Hyper-V-All
  2. Delete using DISM: dism.exe /Online /Disable-Feature:Microsoft-Hyper-V-All
  3. Disable using bcedit: bcdedit /set

All three commands are done in order in the PowerShell command line.

 1
Author: Артур, 2017-09-27 13:50:16