windows11家庭版微软虚拟机Hyper-v开启
- Windows 日常故障
- 2024-11-18
- 181热度
- 0评论
一、安装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
保存后退出,以管理员身份运行cmd文件,输入y回车重启。