Python: Start new command prompt on Windows and wait for it finish/exit

Question:

I don’t understand why it’s so hard to do this on Windows.

I want to spawn a bunch of command prompt windows which will run other scripts. The reason I want this is so I can see all the output from each script neatly (if I have them just be threads/subprocesses in the main window I can’t view all the output properly). I also don’t want to log the output because it’s mostly for viewing progress bars, which don’t really work with log files.

So individual parts of my requirements work, but not together:

os.system("start cmd /c {command here}")     # Launches in new command prompt, closes when done

However, os system won’t let me wait until the command finishes (since start is the actual command, the second it opens the new command prompt it’s “done”)

Similarly if I try:

p = subprocess.Popen(["start", "cmd", "/k", "{command here}"], shell = True) # Needs to be shell since start isn't an executable, its a shell cmd
p.wait()    # I can wait until finished (although it too finishes after start finishes)

So how do I do this? I read somewhere that a solution could be to use processgroup but it’s unix only….or something like that

Or if you have a neat way of displaying the output from all the subprocesses in a single window, then I don’t need to open a new command prompt and can simply use threads. That works too, but if I have lets say 4 threads downloading something and displaying a progress bar as well as outputting other information I don’t know how to display that in a way that can be read (as well as avoiding them all colliding with each other).

PS: This is on Windows Vista.
PPS: I’d preferably like a solution that works on Windows, Linux and Mac, I’m focusing on Windows for now but I’d like a solution that works for all three, and I know Windows is the most finicky. I would just substitute “the start cmd /c” for the OS appropriate command.

Asked By: robev

||

Answers:

How about

os.system("cmd /c {command here}") 

Or even

os.system("{command here}")

It is the start command the one that is launching a separate session instead of using the same one the python program is running on.

Answered By: deStrangis

Upon reading your comment to my previous answer what you need is:

os.system("start /wait cmd /c {command}")

Keep the windows command reference always at hand!

Answered By: deStrangis

You can pass /WAIT to the start command to make it wait for termination.

Answered By: Joe

The accepted answer didn’t work for me.
To open on a new command prompt I had to use:

os.system("start /B start cmd.exe @cmd /k mycommand...")
Answered By: Pedro Lobito

For me this seems to work
os.system("cmd /k {command}")

With /k cmd executes and then remain open
With /c executes and close

To open a new command window and then execute the command
os.system("start cmd /k {command}")

Answered By: user2720864

The simplest way (as pointed out https://stackoverflow.com/a/11615580/3312367) to open a new cmd-window is to use

os.system("start /wait cmd /c {command}")

but it’s not very useful if your command is a complex one with spaces or other control characters. For that I use:

subprocess.run(["start", "/wait", "cmd", "/K", command, "arg /?^"], shell=True)
Answered By: DarkSidds
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.