How to disable paralel processing in batch file ?

  • Thread starter Thread starter Lukas Dobyvatel
  • Start date Start date
L

Lukas Dobyvatel

Hello all.

I am trying to run several commands (console applications programs) in a
batch file on a multiprocessor machine. I see as a problem that the commands
are run parallel and the outputs are mixed up. In the batch file, I use
"call", and I have also tried "start /WAIT /B", but without success.
Do you know what shall I do to disable this behaviour ?

Thank you
Lukas Dobyvatel
 
I have already found what had caused the behaviour. In my .bat file, I ran
the program through a link. In this case, the system probably does not
recognize that it is a program for whose end should it wait. When I call
directly the executable, the behaviour is all right.

Lukas Dobyvatel
 
Back
Top