开启和禁用hyper-v

Hyper-V会和Vmware,VirtualBox产生冲突,hyper-v和Vmware等只能开启一个。使用vmware产品时必须禁用hyper-v,使用hyper-v时必须开启hyper-v,否则在bios里已经启用了虚拟硬件并开启了hyper-v组件启动Docker时也会提示:Hardware assisted virtualization and data execution protection must be enabled in the BIOS

禁掉 Hyper-V

管理员模式运行 CMD:

//To disable:
bcdedit /set hypervisorlaunchtype off

开启Hyper-V

//To enable:
bcdedit /set hypervisorlaunchtype auto

附赠一条开启hyper-v组件的命令(需管理员模式下运行CMD或POWERSHELL):

dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All

参考文章
docker desktop : Hardware assisted virtualization and data execution protection must be enabled
如何 禁掉 Hyper-V && 如何解决禁不掉 Hyper-V 的问题

你可能感兴趣的:(docker,hyper-v,vmware)