Hello All, I have 1 issue with existing batch file and another adding functionality to that batch file 1. start /b /wait copy does not allow the following command to be invoked. It simply goes back to the prompt ::start /b /wait copy \\server1\dumps\dump1_date.zip c:\windbgtemp\ start /b /wait 7z e "c:\windbgtemp\*.zip" -oc:\windbgtemp del c:\windbgtemp\*.zip start /b /wait sleep 10 ren c:\windbgtemp\*.dmp dump.dmp start /b /wait sleep 10 start /b /wait windbg -Q -z C:\windbgtemp\dump.dmp -c ".logopen /t c:\windbgtemp\dbglog.txt;||;.time;.exr -1;.ecxr;kb1000;.logclose" 2. I was hoping to feed a list into the batch with different unc/filenames so that i can simply change a list of path/filename and the batch will process it Example in my list file \\server1\dumps\dump1_date.zip \\server1\dumps\dump5_date.zip \\server2\dumps\dump1_date.zip The batch would some how replace the path/filename in the copy command, process then once completes the first move on to line 2...so on so fourth. I know if can be done with "for in do", but i can't seem to get it. Any help would be appreaciated