现象描述:
pc为联想笔记本 系统是微软家庭中文版,每次启动VM虚拟机都会出现蓝屏现象,出现错误代码system_service_exception
原因及解决方法:
对于Windows10家庭版 没有微软的Hyper-V需要手动添加,然后将其不勾选,专业版的系统应该是直接参考关闭Hyper-V则可解决打开虚拟机蓝屏问题
Windows10家庭版添加Hyper-V的方法
将下面的内容复制到记事本中,保存文件名为Hyper-V.cmd ,然后右键文件管理员权限运行该脚本:
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
脚本运行到最后输入 Y,电脑自动重启,进行配置更新
注添加Hyper-V详细见:
https://jingyan.baidu.com/article/d7130635e5678113fcf4757f.html
在win10搜索里面搜索并打开 ”window启用或关闭windows功能“ 取消勾选Hyper-V如下图:
如何找到windows功能
Windows+R快捷键,在打开的「运行」窗口中直接执行optionalfeatures打开「Windows 功能」对话框。
其中已经勾选的功能即为已经启用,有子选项的服务或功能可以通过左侧的「加号」展开查看。其中部分功能在启用或关闭后会要求重启Win10才生效。