🖥️ Batch (CMD)

Disable Fast Startup (Batch)

Disables Fast Startup, useful when dual-booting or troubleshooting shutdowns (requires admin). Requires an elevated (Administrator) prompt. Applies the tweak via reg.exe.

By WindowsScripting.com · 622 B
SetDisableFastStartup.bat
@echo off
:: ============================================================
:: SetDisableFastStartup.bat
::
:: Disable Fast Startup.
:: Disables Fast Startup, useful when dual-booting or troubleshooting shutdowns (requires admin). Requires an elevated (Administrator) prompt.
:: ============================================================

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Power" /v "HiberbootEnabled" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Fast Startup applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause