@echo off
color 0a
title Downloading files...
echo Starting download...
echo.
:loop
set /a num=%random% %% 100 + 1
set /a speed=%random% %% 5000 + 500
set /a time=%random% %% 99 + 1
echo [%date% %time%] Downloading package_%random%.tar.gz - %num%%% completed at %speed% KB/s
timeout /t 2 >nul
goto loop