Win10/11家庭版开启hyper-v和gpedit.msc
Win家庭版系统无法开启hyper-v虚拟机,也没有组策略编辑器,使用非常不方便。可以通过批处理命令快速打开。
建立 hyper-v.txt 文件,如果一下内容,保持后,改名hyper-v.cmd ,然后右键-以管理员身份运行。
XML/HTML代码
- 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
XML/HTML代码
- pushd "%~dp0"
- dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
- dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
- for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"C:\Windows\servicing\Packages\%%i"