My improvements

This commit is contained in:
MaddoScientisto 2026-02-09 19:01:24 +01:00
commit 47cc5039b8
7 changed files with 213 additions and 5 deletions

12
startmulti.bat Normal file
View file

@ -0,0 +1,12 @@
@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...