Create runmeimfun.bat

Sets the number of windows that you will open upon running.
This commit is contained in:
Atlaskor
2024-08-28 14:36:54 -06:00
committed by GitHub
parent f0be17d672
commit ef16c45662

12
runmeimfun.bat Normal file
View File

@@ -0,0 +1,12 @@
@echo off
setlocal
:: Number of windows to open
set windows=500
:: Path to your script
set script="%~dp0fun.bat"
for /L %%i in (1,1,%windows%) do (
start cmd /c %script%
)