window10家庭版 安裝Hyper-V

vanjn發表於2024-03-09

1.新建檔案,命名為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

2.啟用Hyper-V

相關文章