@echo off title [InstanceCheats.com] Step 9 - Disable Fast Startup color 0C echo. echo ============================================================ echo InstanceCheats.com Fix Tool - Disable Fast Startup echo ============================================================ echo. net session >nul 2>&1 if %errorlevel% neq 0 ( echo [ERROR] This script requires Administrator privileges. pause exit /b 1 ) echo [*] Disabling Fast Startup (Hibernate)... reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v HiberbootEnabled /t REG_DWORD /d 0 /f >nul 2>&1 powercfg /h off >nul 2>&1 echo. echo ============================================================ echo [OK] Fast Startup has been disabled. echo Your PC will now perform a clean boot every time. echo ============================================================ echo. pause