Windows关闭虚拟化安全/VBS教程/方法

ylx 日志评论1,3173字数 1718阅读5分43秒阅读模式

因为Windows11在新版本在符合TPM2.0的机器强制开启虚拟化安全(其实还包含bitlock加密但是我处理了)

所以写一篇关闭教程/方法 文章源自WINOS-https://www.winos.me/archives/3723.html

文章源自WINOS-https://www.winos.me/archives/3723.html

打开虚拟化安全可能会影响VMware强制启用侧通道缓解,从而无法开启VMware虚拟化 等其他问题 文章源自WINOS-https://www.winos.me/archives/3723.html

文章源自WINOS-https://www.winos.me/archives/3723.html

首先从微软官方地址下载文件 https://www.microsoft.com/en-us/download/details.aspx?id=53337 文章源自WINOS-https://www.winos.me/archives/3723.html

123备用 https://www.123pan.com/s/zheA-2bTd3.html 文章源自WINOS-https://www.winos.me/archives/3723.html

文章源自WINOS-https://www.winos.me/archives/3723.html

解压后打开文件夹,在上面地址栏 文章源自WINOS-https://www.winos.me/archives/3723.html

文章源自WINOS-https://www.winos.me/archives/3723.html

输入cmd回车打开cmd,然后输入powershell切到powershell,接着输入set-ExecutionPolicy RemoteSigned(YLX的系统看起来这一步可以省略)输入A或者Y回车 文章源自WINOS-https://www.winos.me/archives/3723.html

最后运行.\DG_Readiness_Tool_v3.6.ps1 -Disable 下面是涉及的命令

cmd
powershell
set-ExecutionPolicy RemoteSigned
.\DG_Readiness_Tool_v3.6.ps1 -Disable

手动重启或者等自动重启

进入引导界面,按提示按WIN键或者F3键确认关闭XX,然后任意键继续,这过程可能要1-2次,有没有3次不确定,完成后会自动重启

进入系统后WIN+R打开运行输入msinfo32确认虚拟化启动已经关闭,效果如图

关闭windows虚拟化安全

方案二:

华为批处理 点我下载  和微软方案区别不大,都要重启后按F3交互

批处理内容 自己另存为 tool.bat

@echo off

dism /Online /Disable-Feature:microsoft-hyper-v-all /NoRestart
dism /Online /Disable-Feature:IsolatedUserMode /NoRestart
dism /Online /Disable-Feature:Microsoft-Hyper-V-Hypervisor /NoRestart
dism /Online /Disable-Feature:Microsoft-Hyper-V-Online /NoRestart
dism /Online /Disable-Feature:HypervisorPlatform /NoRestart

REM ===========================================

mountvol X: /s
copy %WINDIR%\System32\SecConfig.efi X:\EFI\Microsoft\Boot\SecConfig.efi /Y
bcdedit /create {0cb3b571-2f2e-4343-a879-d86a476d7215} /d "DebugTool" /application osloader
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} path "\EFI\Microsoft\Boot\SecConfig.efi"
bcdedit /set {bootmgr} bootsequence {0cb3b571-2f2e-4343-a879-d86a476d7215}
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} loadoptions DISABLE-LSA-ISO,DISABLE-VBS
bcdedit /set {0cb3b571-2f2e-4343-a879-d86a476d7215} device partition=X:
mountvol X: /d
bcdedit /set hypervisorlaunchtype off

echo.
echo.
echo.
echo.
echo =======================================================
echo 当前操作已完成,接下来请关闭此窗口并重启电脑,然后根据屏幕提示完成剩下操作。
pause > nul
echo.
echo.

如果你想再打开VBS cmd运行重启

bcdedit /set hypervisorlaunchtype auto

 
ylx
  • 本文由 ylx 发表于 2024年11月9日10:46:57