windows 10 系统没有 HyperV

1. windows 10 系统没有   Hyper-V

    

2.  新建一个  Hyper-V.bat 文件,输入如下内容。

    

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.  然后以管理员的方式去运行,执行安装功能,重启系统即可。

    

4. 系统有了

如果觉得对您有帮助,麻烦您点一下推荐,谢谢!



好记忆不如烂笔头
原文地址:https://www.cnblogs.com/xuchunlin/p/15598888.html