Files
PC-Script-For-Havoc/runmeimfun.bat
Atlaskor ef16c45662 Create runmeimfun.bat
Sets the number of windows that you will open upon running.
2024-08-28 14:36:54 -06:00

13 lines
179 B
Batchfile

@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%
)