I need to execute my Python scripts in parallel so I use the following batch file for it:
start python C:\myfolder\1.py
start python C:\myfolder\2.py
start python C:\myfolder\3.py
It works fine, but now I need to run three more scripts in parallel AFTER the above first three finish. How can I specify it in the same batch file?