Collections:
Other Resources:
"goto" - Change the Execution Flow
What is the "goto" batch command for?
✍: FYIcenter.com
The "goto" command is for changing the execution flow in a batch file.
Below is the "if" command syntax:
goto label
When the "goto" command is executed, the execution will jump to the line where "label" is defined and continue to execution the line after the "label".
Here is an example on how to use the "goto" command:
@ECHO OFF FORMAT a: /s IF NOT errorlevel 1 GOTO end ECHO An error occurred during formatting. :end ECHO End of batch program.
⇒ "for" - Loop on List of Files
2022-08-26, ∼2429🔥, 0💬
Popular Posts:
What is Java Runtime Environment 1.4.2 - Download Program Files (DPF)? Java Runtime Environment 1.4....
How do I install simplified and traditional Chinese language packs on my Windows XP system? Installi...
What are the commonly used background processes on Windows systems? - Part II Continue from Part I ....
How to use sc.exe command to start and stop an existing service? If you want to start or stop a serv...
What is service "AeLookupSvc" on Windows Vista? "AeLookupSvc" is a system service with the display n...