🖥️ Batch (CMD)

Disable Explorer Startup Delay (Batch)

Removes the artificial delay before startup apps launch. Applies the tweak via reg.exe.

By WindowsScripting.com · 567 B
SetDisableStartupDelay.bat
@echo off
:: ============================================================
:: SetDisableStartupDelay.bat
::
:: Disable Explorer Startup Delay.
:: Removes the artificial delay before startup apps launch.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t REG_DWORD /d "0" /f

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