Hey dudes! source code:
I want to know if there is a way to start a batch file with an arguments, in this case so I don't have to write thei for EVERY window that starts.
Any help would be awsome XD
Code:
@echo off color 0a set /p ip=Enter the ip you want to ping: set dataSize=10000 goto loop :loop ping %ip% -n 1 -w 1 -l %dataSize% set dataSize=dataSize+dataSize pause start cmd /c ping.bat "%ip%" <---------- parameter goto loop
Any help would be awsome XD
Comment