How to make the execution of one part of the code, and at the same time clear the entire command line with the command cls? (if that, the 1st part of the code needs to be executed 1 time, and the 2nd part to execute an infinite number of times until a certain moment, simultaneously with the 1st part) I want to find a way without additional tools and without vbs, if it is, of course, possible .

  • It is necessary to work with threads for sure I don’t know how but look for something like: “Multithreading in a bat file” - fvBn
  • one
    If you just need to hide the output of the first command, you can write >> NUL. For example, dir >> NULL - David Manjula

0