> > Is there a way I can ensure that each command finishes before the next line > in the script is executed? > I'm stealing the answer from Mark Hammond's previous post "Win32 blocking spawn" >>> import os >>> os.system('start /wait ') 0 >>> os.system('start ') 0 >>> --Darrell