hyper-v.txtfor /f %%i in ('findstr /i . hyper-v.txt 2^>nul') d_ubuntu system">
赞
踩
问题:运行VMware等虚拟机导致win10蓝屏死机(终止代码:SYSTEM_SERVICE_EXCEPTION)
原因:因为更新了Windows的相关补丁导致的,Hyper-V被默认开启
解决方法:
新建test.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
运行脚本
右键-以管理员身份运行脚本
等待配置成功后按提示输入y,重启电脑后,就可以在(启用或关闭windows功能)中看到Hyper-V选项了,然后将该选项取消即可
重启
再去打开虚拟机的ubuntu就不会蓝屏了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。