Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
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, 1352👍, 0💬
Popular Posts:
How to remove BacsTray.exe from the startup application list to gain performance and reduce security...
How do I remove the list of files that I have recently played from the File menu in the Player? In o...
What is QLBCTRL.exe - Process - QLB Controller? Process QLBCTRL.exe is the QLB (Quick Launch Button)...
UpdateUI.exe at startup ,how to remove it Actually, you should keep UpdaterUI.exe as a startup, beca...
Where to find tutorials on Internet Explorer (IE)? Here is a large collection of tutorials to answer...