win10家庭版添加Hyper-V

pushd "%~dp0"
dir /b %SystemRoot%servicingPackages*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%servicingPackages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL



将以上文本保存为cmd文件,以管理员身份运行该文件即可。

原文地址:https://www.cnblogs.com/cyf18/p/14287010.html