Thank you!
If I want to see each method running in separate CMD window, should I remove the "/b" that comes after the "start"?
What I want is that each method will run in loops in its own command window
Search found 2 matches
- 15 May 2021 06:14
- Forum: DOS Batch Forum
- Topic: Run program with different methods in loops
- Replies: 3
- Views: 3397
- 15 May 2021 01:45
- Forum: DOS Batch Forum
- Topic: Run program with different methods in loops
- Replies: 3
- Views: 3397
Run program with different methods in loops
Hello, I have a program that needs 3 methods to run in parallel. Each method takes different time to finish, and then the command line closes. But I need each method to restart after it finishes Right now I do something like that in my .bat file: cd C:\ProgramFolder\ START program -m method1 //takes...