12 lines
238 B
Batchfile
12 lines
238 B
Batchfile
|
|
@echo off
|
||
|
|
setlocal
|
||
|
|
|
||
|
|
rem Loop through the list of parameters
|
||
|
|
for %%P in (%*) do (
|
||
|
|
|
||
|
|
rem Start a new instance of start.bat for this parameter
|
||
|
|
start /b cmd /c "start start.bat %%P"
|
||
|
|
|
||
|
|
)
|
||
|
|
|
||
|
|
echo All instances have been started. Exiting...
|