正常安装:
image.png image.png
两个踩坑的地方
1 需要启用windows功能 “适用于 Linux 的 Windows 子系统” 和 “虚拟机平台“(这个还需要再验证下是否必要)
image.png
参考连接:https://zhuanlan.zhihu.com/p/361310073
创建一个文本文件,复制下面代码,文件后缀使用 cmd,然后运行程序
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
网友评论