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

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!

Leave a Comment