如何解决win10家庭版找不到Hyper-V选项
今天在电脑上安装docker的时候发现自己电脑上没有Hyper-V选项,查了下资料写了下脚本运行安装了一下,脚本如下:pushd "%~dp0"dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txtfor /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism
·
今天在电脑上安装docker的时候发现自己电脑上没有Hyper-V选项,查了下资料写了下脚本运行安装了一下,脚本如下:
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
文件另存为Hyper-V.bat格式,用管理员身份运行,如下
安装完成后重启电脑即可
Windows 安装Docker碰到 cannot enable hyper-v service :解决方案
更多推荐
已为社区贡献1条内容
所有评论(0)