Search notes:

cmd.exe - call

call is used to execute a batch file and wait until the batch file is finished with the execution.
call [drive:][/path/to/]batch-file.bat [parameters] [:label [arguments]]
call is affected by whether command extensions are enabled or disabled.

See also

To call a batch file (or any command, for that matter) and not wait for it to complete, start can be used. start executes the given program/batch file in a new process.
cmd.exe: Built-in commands

Index