It sounds like one of your command2 commands may be calling (launching) a batch file without using the CALL command. (At the bottom are two Flowcharts explaining the consequences of using and not using CALL.) See **The consequences of using and not using CALL.
If my initial hunch is incorrect, you need to start taking steps to debug your batch files.
Comment-out any @ECHO OFF statements and put some PAUSE and maybe even ECHO statements in your batch files. This will help you locate your errors. Also, remember that you'll need to use the CALL command if you expect for your code to execute a batch file, then continue executing the CALLing batch file after it finishes executing the CALLed batch file. Also, realize that if you CALL any batch file containing an ECHO OFF statement, that ECHO OFF continues to be enforced even after control returns to the CALLing file. For instance:
:: For debugging porpuses we leave `ECHO` in it's default `ON` state
REM @echo off
:: Execute your leading commands:
commands1
:: If you prefer, because you know that your problem comes after this point;
:: You can, if you want, leave the leading `ECHO OFF` command alone, and
:: instead, put an `ECHO ON` statement here:
echo on
ftp -i -s:copy.txt
ECHO Back from FTPing...
pause
:: Calling command2.1.exe
command2.1.exe
echo Back from command2.1.exe
pause
:: Calling command2.2.bat
CALL command2.2.bat
:: Since Command2.2.bat contains an ECHO OFF statement
:: we'll turn `ECHO` back on again for debugging purposes.
ECHO ON
echo Back from command2.2.bat
pause
The consequences of using and not using CALL.
Assuming these two batch files:
RUN.BAT
@ECHO OFF
ECHO Starting: RUN.BAT
(Misc commands)
:: 'Calling' SECOND.BAT without useing `CALL`
SECOND.BATCH
:: Back from SECOND.BAT
ECHO Back from second.bat
SECOND.BAT
@echo off
ECHO Running: SECOND.BAT
The flow of execution without a CALL statement, will move like this:
C:\> RUN.BAT<kbd>ENTER</kbd>
|
\|/
v
@echo off
echo Running
(misc commands)
|
\|/
v
SECOND.BAT ----> @echo off
echo Running Seond.bat
(misc commands)
|
\|/
v
END
But if you change to SECOND.BAT line in the RUN.BAT file to CALL SECOND.BAT, the flow of execution will go like this:
C:\> RUN.BAT<kbd>ENTER</kbd>
|
\|/
v
@echo off
echo Running
(misc commands)
|
\|/
v
SECOND.BAT ----> @echo off
echo Running Seond.bat
(misc commands)
|
\|/
v
:: Back from SECOND.BAT <--+
|
\|/
v
ECHO Back from second.bat
|
\|/
v
END