@echo off title [InstanceCheats.com] Fix BSOD / Bluescreen (KERNEL CHECK FAILURE / RTCore64) color 0C echo. echo ============================================================ echo InstanceCheats.com Fix - BSOD / Bluescreen echo KERNEL_CHECK_FAILURE ^| RTCore64.sys ^| Driver Issues echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [1/7] Disabling VBS... reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard" /v EnableVirtualizationBasedSecurity /t REG_DWORD /d 0 /f >nul 2>&1 echo [OK] echo [2/7] Disabling Memory Integrity (Core Isolation)... 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\DeviceGuard\Scenarios\KernelShadowStacks" /v Enabled /t REG_DWORD /d 0 /f >nul 2>&1 echo [OK] echo [3/7] Disabling Vulnerable Driver Blocklist... reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Config" /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f >nul 2>&1 echo [OK] echo [4/7] Disabling Hyper-V... bcdedit /set hypervisorlaunchtype off >nul 2>&1 dism /Online /Disable-Feature /FeatureName:Microsoft-Hyper-V-All /NoRestart >nul 2>&1 echo [OK] echo [5/7] Disabling Windows Defender... reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f >nul 2>&1 reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableRealtimeMonitoring /t REG_DWORD /d 1 /f >nul 2>&1 echo [OK] echo [6/7] Disabling anti-cheat services... sc stop vgc >nul 2>&1 & sc config vgc start= disabled >nul 2>&1 sc stop vgk >nul 2>&1 & sc config vgk start= disabled >nul 2>&1 sc stop FACEIT >nul 2>&1 & sc config FACEIT start= disabled >nul 2>&1 sc stop EasyAntiCheat >nul 2>&1 & sc config EasyAntiCheat start= disabled >nul 2>&1 sc stop BEService >nul 2>&1 & sc config BEService start= disabled >nul 2>&1 echo [OK] echo [7/7] Running SFC and DISM repair... echo This may take a few minutes... sfc /scannow >nul 2>&1 DISM /Online /Cleanup-Image /RestoreHealth >nul 2>&1 echo [OK] echo. echo ============================================================ echo [OK] BSOD fixes applied. echo A REBOOT is required. Restart your PC now. echo If BSOD persists, open a support ticket with the error code. echo ============================================================ echo. choice /C YN /M " Reboot now? (Y/N)" if %errorlevel%==1 shutdown /r /t 5 /c "Rebooting to apply BSOD fixes..."