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, ∼2917🔥, 0💬
Popular Posts:
What is "WLAN AutoConfig" in my Windows XP service list? And how is "WLAN AutoConfig" service relate...
What is the "Credential Manager (VaultSvc)" system service on Windows Server 2012? Can I disable "Cr...
How to dump the list of all processes that are running on my Windows 7 system? I want save names of ...
How to burn or record MP3 music files as audio tacks to audio CD (Compact Disk Digital Audio or CD-D...
What is PHP? PHP is a widely-used general-purpose scripting language that is especially suited for W...