Command CALL
Function:
Run a second batch program, then returns to the first batch program.
Syntax:
CALL [drive:][path]filename [batch-parameters]
| [drive:][path]filename | Batch program name and location. |
| batch-parameters | Any command line information that is used by the batch program. |
Note:
- When there is no need to return to the original batch program, then use the following syntax, without the CALL command :-
[drive:][path]filename [batch-parameters]
- When the CALL command is used at the WinOne® prompt to run a batch program, the batch program will be executed in a separate window.
- Also see command STOP and Batch Programs.
|