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

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.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

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!

Method 2

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...")

Method 3

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}")

Method 4

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

Method 5

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.

Method 6

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)


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x