Skip to content

Instantly share code, notes, and snippets.

@wangjiezhe
Created November 18, 2023 01:08
Show Gist options
  • Save wangjiezhe/0ee5460d5e6f0bbb01ce1300780c4e9e to your computer and use it in GitHub Desktop.
Save wangjiezhe/0ee5460d5e6f0bbb01ce1300780c4e9e to your computer and use it in GitHub Desktop.
在 Windows 家庭版上安装 Hyper-V
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment