Sleep N seconds in a batch file.
Drop-in sleep that works on every Windows version, including the ones missing TIMEOUT.
A tiny command-line utility that pauses a batch file for a specified number of seconds. Useful in .BAT / .CMD scripts that need to wait for an operation to settle — service start, disk flush, hardware initialisation.
delay 5
Waits 5 seconds, then exits. Use it in batch files between commands that must not run back-to-back.
Windows TIMEOUT works in modern shells but has quirks: it is interactive by default (press any key to skip), it complains when input is redirected, and it isn't present on every Windows variant. delay is non-interactive, redirection-safe, and runs on every Windows from 95 onward.
49 small, sharp Windows utilities. All freeware. All by the same author.