Dec 13, 2004 #1 telande35 Programmer Nov 27, 2004 24 BE Hey, I have two .BAT files . I made a new ALL.BAT file that excecutes the 1.BAT and 2.BAT as follows : echo "Start 1" 1.BAT echo "Start2" 2.BAT echo "End" But he stops after executing 1.BAT. 1.BAT and 2.BAT contains only an echo. What is wrong here, Thanks
Hey, I have two .BAT files . I made a new ALL.BAT file that excecutes the 1.BAT and 2.BAT as follows : echo "Start 1" 1.BAT echo "Start2" 2.BAT echo "End" But he stops after executing 1.BAT. 1.BAT and 2.BAT contains only an echo. What is wrong here, Thanks
Dec 13, 2004 #2 shrubble MIS Jul 23, 2003 300 US Does it help if you use the 'call' keyword echo "Start 1" call 1.BAT echo "Start2" 2.BAT call echo "End" "I would rather have a free bottle in front of me, than a pre-frontal lobotomy..." -Shrubble http://www.ishrubble.com Upvote 0 Downvote
Does it help if you use the 'call' keyword echo "Start 1" call 1.BAT echo "Start2" 2.BAT call echo "End" "I would rather have a free bottle in front of me, than a pre-frontal lobotomy..." -Shrubble http://www.ishrubble.com
Dec 13, 2004 #3 NortonES2 Technical User May 9, 2003 1,024 GB Or even echo "Start 1" call 1.BAT echo "Start2" call 2.BAT echo "End" ------------------------------- If it doesn't leak oil it must be empty!! Upvote 0 Downvote
Or even echo "Start 1" call 1.BAT echo "Start2" call 2.BAT echo "End" ------------------------------- If it doesn't leak oil it must be empty!!
Dec 13, 2004 #4 shrubble MIS Jul 23, 2003 300 US I'm sorry, I screwed that one up!!! Shoulda checked myself before submitting... "I would rather have a free bottle in front of me, than a pre-frontal lobotomy..." -Shrubble http://www.ishrubble.com Upvote 0 Downvote
I'm sorry, I screwed that one up!!! Shoulda checked myself before submitting... "I would rather have a free bottle in front of me, than a pre-frontal lobotomy..." -Shrubble http://www.ishrubble.com