Skip to content

Instantly share code, notes, and snippets.

@Lua12138
Created October 4, 2020 05:05
Show Gist options
  • Save Lua12138/7cdd39e006cf18c6cf1276e30c8f67b7 to your computer and use it in GitHub Desktop.
Save Lua12138/7cdd39e006cf18c6cf1276e30c8f67b7 to your computer and use it in GitHub Desktop.
Install Hyper-V with Windows Home Edition (run with Administrator) / Windows 家庭版安装hyper-v(使用管理员身份运行)
@echo off
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