I'm trying to call several install.bat files one after another with Python trough CMD.
It is necessary that each bat file be displayed in an interactive console window because it asks for some users instructions and that the python program only resume after each CMD process is resolved Each install.bat file can take a pretty long time to finish its process.
My code is the following :
for game in games :
print("----------- Starting conversion for %s -----------" %game)
subprocess.call("start cmd /C " + "Install.bat", cwd=os.path.join(gamesDosDir,game), shell=True)
print("end")
But the console windows inside the shell are launched all at once and the "end" message appears event before any of them is finished, whereas I would like them appearing one by one and not go to the n+1 one until the n one is finished and the console window closed (either by user or automatically /K or /C then).
I understand this is some problems using CMD as call should be blocking. How to resolve that? Additionally, if possible how to keep it exactly the same and add 'Y' and 'Y' as default user input?
The most common way to start a batch file (or more generally a CLI command) if to pass it as an argument to
cmd /c
. After you comment I can assume that you need to usestart
to force the creation of a (new) command window.In that case the correct way is to add the
/wait
option to the start command: it will force the start command to wait the end of its subprocess:But @eryksun proposed a far cleaner way. On Windows, .bat files can be executed without
shell = True
, andcreationflags=CREATE_NEW_CONSOLE
is enough to ensure a new console is created. So above line could simply become: