文章目录

  • 小结
  • 问题
  • 解决
  • 参考


小结

Windows 10最近有个自动更新并重启电脑后,启动WSL后报错,进行了解决。

问题

Windows 10最近有个自动更新后,报以下错:

Please enable the Virtual Machine Platform Windows feature and ensure virtualization is enabled in the BIOS.
For information please visit https://aka.ms/wsl2-install

解决

首先想到的是在Windows Features里去开启Hyper V 以及 Windows Subsystems for Linux等的设置,发现这些设置已经很久以前开启了,根本就没动过。

最后参考链接1运行以下指令再重启计算机解决问题:

DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype auto

参考

Github: Please enable the Virtual Machine Platform Windows feature and ensure virtualization is enabled in the BIOS. #5363