启用和禁用 Hyper V 所需的简单说明 Docker
Simple instructions needed for enabling and disabling Hyper V Docker
我之前问过类似的问题,但我想知道是否有人可以给我一些非常简单的说明,说明如何关闭 HyperV 容器功能,以便我可以使用 Virtual Box,然后重新打开它们以使用 Docker 对于 Windows
目前我收到了来自 Docker 的 Windows
的以下消息
“Hyper-V 和容器功能未启用。
您想让它们 Docker 能够正常工作吗?
您的计算机将自动重新启动。
注意:VirtualBox 将不再工作。"
我不需要同时使用两者
我真的需要明确的指示,因为我不想处于 docker 工作的位置,然后再也不能使用 Virtual Box!
我需要时不时地使用我现有的 Virtual Box VM,但我不能处于无法使用它们的位置
保罗
您可以执行以下操作来禁用
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype off
及以下启用
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
bcdedit /set hypervisorlaunchtype auto
来自 PowerShell
禁用
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
启用
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V –All
PS:源线程
https://superuser.com/questions/540055/convenient-way-to-enable-disable-hyper-v-in-windows-8
我之前问过类似的问题,但我想知道是否有人可以给我一些非常简单的说明,说明如何关闭 HyperV 容器功能,以便我可以使用 Virtual Box,然后重新打开它们以使用 Docker 对于 Windows
目前我收到了来自 Docker 的 Windows
的以下消息“Hyper-V 和容器功能未启用。 您想让它们 Docker 能够正常工作吗? 您的计算机将自动重新启动。 注意:VirtualBox 将不再工作。"
我不需要同时使用两者
我真的需要明确的指示,因为我不想处于 docker 工作的位置,然后再也不能使用 Virtual Box!
我需要时不时地使用我现有的 Virtual Box VM,但我不能处于无法使用它们的位置
保罗
您可以执行以下操作来禁用
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype off
及以下启用
dism.exe /Online /Enable-Feature:Microsoft-Hyper-V /All
bcdedit /set hypervisorlaunchtype auto
来自 PowerShell
禁用
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-All
启用
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V –All
PS:源线程
https://superuser.com/questions/540055/convenient-way-to-enable-disable-hyper-v-in-windows-8