🖥️ Batch (CMD)

Check "Disable Fast Startup" Status (Batch)

Uses reg query to check the current value behind the "Disable Fast Startup" tweak.

By WindowsScripting.com · 467 B
CheckDisableFastStartupStatus.bat
@echo off
:: ============================================================
:: CheckDisableFastStartupStatus.bat
::
:: Checks whether "Disable Fast Startup" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v "HiberbootEnabled" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'HiberbootEnabled' is not set (using the Windows default^).
)
pause