Hi ,
I have five tasks i want to do in parallel in batch script.
So which command i can use for parallel excution.
regards
Ajeena
Parallel Execution of tasks
Moderator: DosItHelp
Re: Parallel Execution of tasks
It depend on the task it self, but to start five programs fro example, the code should look like this:
title, is the title of the cmd window.
c:\path\of\the\application.exe, the the location to the exe app.
Repeat that line depening on how many application you are going to run
Code: Select all
@Echo OFF
start "title" "c:\path\of\the\application.exe"
title, is the title of the cmd window.
c:\path\of\the\application.exe, the the location to the exe app.
Repeat that line depening on how many application you are going to run