1.

Solve : batch file to open multiple DOS windows?

Answer»

Hi there
can someone help me with a batch FILE to OPEN multiple dos windows at the same time (each window will be running the same commands) start "" "batchfile.cmd"
start "" "batchfile.cmd"
start "" "batchfile.cmd"
start "" "batchfile.cmd"

etc
Thanks Dias,
Can I give user input to decide on the NUMBER of TIMES the window to be opened?Code: [Select]@echo off
set /p num="How many windows ? "
for /l %%i in (1,1,%num%) do (
start "" "batchfile.cmd"
)
Great!! Thanks a lot.



Discussion

No Comment Found