Win10家庭版使用VMware16蓝屏问题
1.右键-->个性化-->查找"控制面板"-->程序
2.点击"启动或关闭windows功能"
3. 将 Hyper-V 和 虚拟机平台打勾
4.如果没有"Hyper-V"选项
1)新建一个txt文本,将下方代码复制进去
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
2)将txt文件名改为 Hyper-V.bat
3)右键 Hyper-V.bat -->以管理员身份运行
4)在程序运行结束后按"Y"重启电脑
参考文章:https://blog.csdn.net/qq_37150711/article/details/121486113
https://blog.csdn.net/weixin_44109974/article/details/120168019