drop it into a second batch file
Code:
echo command >>1.bat
start 1.bat
REM rest of code
echo and the >> 1.bat
injects code into 1.bat inside of the directory that the batch file is being run from.
start 1.bat opens 1.bat in a new window. replace command with the command you want to run or just creat a batch file that contains it and just use start to run that batch file.