Timeout
Updated: January 21, 2005
Syntax
Parameters
Remarks
- The timeout command is typically used in batch files.
- A user keystroke resumes the command processor execution immediately, even if the time-out period has not expired.
- Timeout is similar to the MS-DOSpause command when you use it in conjunction with the sleep command.
Examples
timeout /t 10
To pause the command processor for 100 seconds and to ignore any key press, type:
timeout /t 100 /nobreak
To pause the command processor indefinitely until a key is pressed, type:
timeout /t -1
Formatting legend
| Format | Meaning | 
| Italic | Information that the user must supply | 
| Bold | Elements that the user must type exactly as shown | 
| Ellipsis (...) | Parameter that can be repeated several times in a command line | 
| Between brackets ([]) | Optional items | 
| Between braces ({}); choices separated by pipe (|). Example: {even|odd} | Set of choices from which the user must choose only one | 
| Courier font | Code or program output | 
