@echo off title [InstanceCheats.com] Step 3 - Disable VBS (Virtualization-Based Security) color 0C echo. echo ============================================================ echo InstanceCheats.com Fix Tool - Disable VBS echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [*] Disabling Virtualization-Based Security... reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v RequirePlatformSecurityFeatures /t REG_DWORD /d 0 /f >nul 2>&1 echo [*] Disabling Credential Guard... reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 reg add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v LsaCfgFlags /t REG_DWORD /d 0 /f >nul 2>&1 echo [*] Disabling Secure Launch... reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\SystemGuard" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 echo [*] Removing VBS via bcdedit... bcdedit /set vsmlaunchtype Off >nul 2>&1 bcdedit /set vm No >nul 2>&1 echo. echo ============================================================ echo [OK] VBS has been disabled. echo A REBOOT is required for changes to take effect. echo ============================================================ echo. choice /C YN /M " Reboot now? (Y/N)" if %errorlevel%==1 shutdown /r /t 5 /c "Rebooting to apply VBS changes..."