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, ∼2923🔥, 0💬
Popular Posts:
What is "Remote Desktop Services UserMode Port Redirector" in my Windows XP service list? And how is...
What is the startup program "hkcmd Module - hkcmd.exe" on my Windows 8 computer? Can I remove it to ...
Where to find tutorials on using Windows 8 Installed Programs and software? Here is a collection of ...
Where to find information about what services are running on Windows 8 and how to manage them? I wan...
What is the scheduled task "\Microsoft\Windows\WDI\ ResolutionHost"on my Windows 7 computer? "\Micro...