@echo off
mode con: cols=48 lines=8
color 4f
title Please Wait
Echo Launch Adam - Henry Starter File
Echo The launch will will be delayed 25 seconds
Echo Press ctrl-C to cancel
echo.
echo 0 100
SET /P var=Progress counter : NUL 2>&1
call :printline .
set /a count=count+1
if %count%==20 goto finish
goto loop
:printline
REM Print text passed to sub without a carriage return.
REM Sets line variable in case %1 intereferes with redirect
set line=%1
set /p var=%line%
|