WSL 安装失败,错误代码为 0x80248014

WSL 安装失败,错误代码为 0x80248014

我在 Windows10 上安装 WSL 失败,并显示以下错误代码。

>wsl.exe --install -d Ubuntu
Installing: Ubuntu
An error occurred during installation. Distribution Name: 'Ubuntu' Error Code: 0x80248014

我不明白这个错误代码。这个错误到底表示什么?

答案1

此错误通常意味着 Windows 更新出现故障。根据这个答案。您可以使用以下开关绕过通过 Windows 更新安装 WSL --web-download

wsl.exe --install --web-download Ubuntu

您可能还应该研究一下为什么您的 Windows 更新可能已损坏,从 cmd 运行标准修复命令可能是个好主意:

sfc /scannow
DISM /Online /Cleanup-Image /CheckHealth
chkdsk C: /scan /forceofflinefix

相关内容