关闭UAC,启用内存完整性并重启电脑的批处理命令
@echo off echo Disabling UAC... reg add 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System' /v 'EnableLUA' /t REG_DWORD /d '0' /f >nul echo Enabling memory integrity... reg add 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceGuard' /v 'EnableVirtualizationBasedSecurity' /t REG_DWORD /d '1' /f >nul reg add 'HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\DeviceGuard' /v 'RequirePlatformSecurityFeatures' /t REG_DWORD /d '1' /f >nul echo Restarting computer... shutdown /r /t 0 >nul
原文地址: https://www.cveoy.top/t/topic/nEvA 著作权归作者所有。请勿转载和采集!