Within MS-DOS and Windows and also Linux personal computer environment you'll find so many important files which are called a batch files. Typically these could have the .bat, .cmd, .btm extension. A batch file is run in MS-DOS, SHELL and will help you to run a certain string of commands with no need to run each separately. A good example of one would be one that will run your computer and is usually a hidden file called 'autoexec.bat'.
There are numerous commands for the batch file, for example command, echo, go to, if, rem, set, pause as well as batch wait and many more. Each command will function in its own way. Some variations of Windows or Unix may not use all commands; or they might be called differently.
Often times, depending on what your job will be, you might wish to delay the start of a certain command or function. To do this within the batch file you would have to add within the file the 'wait' batch file command. What this command truly does is delay the sequence of commands for a set period of time. One reason why you may decide to implement batch wait is if you are want to run particular ping occasions.
Please view this example where this can be a MS-DOS bat file making use of the PAUSE and that is the batch wait setting.
# @ECHO off
# ECHO Hello World!
# PAUSE
# ECHO on
For a Windows example find below (this is not a genuine path location, merely randomized items for illustration functions only.)
The majority of everyday computer users will not have a reason to create these batch wait files, however, in case you are scanning through your pc and you notice something with the ending of .bat, . rem, .cmd, .btm, etc, you probably should not delete it before you first get the exact filename and look it up online. Deleting this could result in a computer crash as it will often have been a file employed to start up a program; it could possibly also however be a virus.
Author Resource:-
Find this info on batch wait as well as other important computer tips at computertooslow.com.