🖥️ Batch (CMD)
Check "Disable Explorer Startup Delay" Status (Batch)
Uses reg query to check the current value behind the "Disable Explorer Startup Delay" tweak.
CheckDisableStartupDelayStatus.bat
@echo off
:: ============================================================
:: CheckDisableStartupDelayStatus.bat
::
:: Checks whether "Disable Explorer Startup Delay" is currently applied.
:: ============================================================
reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" 2>nul
if %ERRORLEVEL% NEQ 0 (
echo.
echo 'StartupDelayInMSec' is not set (using the Windows default^).
)
pause