|
家庭版系统怎么打开Hyper-V虚拟机
1、批处理内容如下
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、以管理员身份运行该批处理
3、开启hyper-V
控制面版中找到 程序和功能 -> 启用或关闭windows功能 不同电脑可能有一点不一样,但是就是找到启用或关闭windows功能
如果已经开启了就不用管,如果没开启就开启一下。
4、 win+R 输入cmd 打开控制台
输入以下指令即可
REG ADD "HKEY_LOCAL_MACHINE\software\Microsoft\Windows NT\CurrentVersion" /v EditionId /T REG_EXPAND_SZ /d Professional /F
到此为止完成打开hyper-V功能。 |
|