Hyper-v
链接
Enable Hyper-V using PowerShell
powershell
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -AllDisable Hyper-V using PowerShell
sh
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-VEnable Hyper-V with CMD and DISM
powershell
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V开关
sh
# on
bcdedit /set hypervisorlaunchtype auto
# off
bcdedit /set hypervisorlaunchtype offGUI打开
Cmd + R, 然后 appwiz.cpl, 启动或关闭Windows 功能。
