Collections:
Other Resources:
"call" - Run Another Batch File
What is the "call" batch command for?
✍: FYIcenter.com
The "call" command is for running another batch file, command or program.
Below is the "call" command syntax:
call command parameters
When the "call" command is executed, a child batch execution context will be created to run the given command with given parameters.
For example, the "\fyicenter\SoapUI\bin\soapui.bat" batch file can be executed directly to start SoapUI for Web API testing. But you can "call" it from your own batch file, Run-SoapUI.bat, so that you can set the work directory before the call. And remove the log file after the call.
@echo off rem run SoapUI in my way cd \temp call \fyicenter\SoapUI\bin\soapui.bat > nul del \temp\soapui.log
2021-04-02, 1851🔥, 0💬
Popular Posts:
I have a program called (Default) with no description as to what it is for. Listed in the administra...
What is realsched.exe process - Real Player RealNetworks Scheduler? Process realsched.exe is a backg...
Why am I getting this authentication failed message when adding my cell phone as a bluetooth device ...
I am unable to copy data from my external hard-disk (NTFS). When I try to repair it from cmd using c...
A collection of 14 tutorials on Apache and PHP installation and configuration covering: How to downl...