Win10家庭版安裝Hyper-V虛擬機教程:
1、首先我們確定下自己的電腦是否支持虛擬化技術,不然Hyper-V虛擬機也沒辦法使用。
打開命令提示符,輸入
systeminfo
查看下自己的處理器是否支持虛擬化技術,不支持的話,就別費勁找回Hyper-V功能了,重點信息的最后,4個要求是不是全都是“是”。
如果不支持也有可能是BIOS中沒有開啟虛擬化支持導致的,可以去相應的位置開啟。
2、然后確定電腦支持虛擬化技術之后,我們再把下面的代碼復制到文本文檔(記事本)中;
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
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
4、將文本的后綴.txt改成.cmd,或者BAT,之后以管理員身份打開這個文件,重啟完成就能使用功能完整的Hyper-V了。(注意添加功能需要聯(lián)網(wǎng)哦)
以上就是Win10家庭版安裝Hper-v虛擬機的教程了,大家學會如何安裝了嗎。就算不是win10專業(yè)版也可以添加很多功能,Win10家庭版也不是廢材哦