Windows家庭版打开或关闭Hyper-V

2021-05-27 22:00

阅读:583

标签:pac   管理员   launch   line   hyperv   package   lang   add   ble   

打开hyper-v

创建open_hyper-v.bat文件

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

右键-用管理员权限打开

关闭hyper-v

创建close_hyper-v.bat文件

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 /Remove-Package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /disable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL

bcdedit /set hypervisorlaunchtype off

Windows家庭版打开或关闭Hyper-V

标签:pac   管理员   launch   line   hyperv   package   lang   add   ble   

原文地址:https://www.cnblogs.com/zhanglikun/p/14788448.html


评论


亲,登录后才可以留言!