码迷,mamicode.com
首页 > Windows程序 > 详细

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

时间:2021-05-24 17:03:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!