美文网首页
Windows家庭版本上没有Hyper-V

Windows家庭版本上没有Hyper-V

作者: 阳光十度暖 | 来源:发表于2020-05-14 14:11 被阅读0次

    1.首先新建一个记事本文件。

    2.在记事本中写入下面代码。

    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

    3.将记事本文件保存为bat格式,例如:Hyper-V.bat。

    4.以管理员身份执行 Hyper-V.bat 文件。

    5. 输入Y后重启电脑,再打开程序-->启用或关闭Windows功能,就可以在 "启动或关闭 Windows 功能" 中看到 Hyper-V 了

    相关文章

      网友评论

          本文标题:Windows家庭版本上没有Hyper-V

          本文链接:https://www.haomeiwen.com/subject/ypstohtx.html