@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