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
保存成功后,以管理员运行,出现cmd指令,等待执行完,再去查看就有了hype-v。
懒人版也可以cmd以管理员直接输入指令
bcdedit /set hypervisorlaunchtype off
日后想恢复可以输入bcdedit / set hypervisorlaunchtype auto
这时再启动虚拟机,正常就会好了,但是我的还是蓝屏,最后找到原因下的vm15版本问题导致蓝屏,先卸载原版本,可以去vm官网重新下载最新版,完美解决。
@echo off pushd "%~dp0" dir /b %systemroot%\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >gp.txt dir /b %systemroot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>gp.txt for /f %%i in ('findstr /i . gp.txt 2^>nul') do dism /online /norestart /add-package:"%systemroot%\servicing\Packages\%%i" pause
双击运行,等待运行完毕,再次输入命令就有了。
https://blog.csdn.net/qq_38738510/article/details/102778998
到此就结束了!!!