@echo off title [InstanceCheats.com] Step 5 - Disable Vulnerable Driver Blocklist color 0C echo. echo ============================================================ echo InstanceCheats.com Fix Tool - Disable Vulnerable Driver Blocklist echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [*] Disabling Microsoft Vulnerable Driver Blocklist... reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Config" /v VulnerableDriverBlocklistEnable /t REG_DWORD /d 0 /f >nul 2>&1 echo [*] Disabling Driver Signing Enforcement for next boot... bcdedit /set nointegritychecks on >nul 2>&1 bcdedit /set testsigning on >nul 2>&1 echo. echo ============================================================ echo [OK] Vulnerable Driver Blocklist has been disabled. echo Test signing mode is now enabled. 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 driver blocklist changes..."