Code: Select all
@ECHO OFF
:start
echo "Please do not touch anything during patching process!"
echo "Stage 1 of 5 (will take about 15 minutes depending on CPU speed)"
echo checking
goto :a
:a
cls
echo "Stage 2 of 5 (will take about 5 minutes depending on CPU speed)"
rem commands
goto :b
:b
cls
echo "Stage 3 of 5 (will take about 10 minutes depending on CPU speed)"
echo verifing
goto :c
:c
cls
echo "Stage 4 of 5 (will take about 10 minutes depending on CPU speed)"
rem commands
goto: d
:d
cls
echo "Stage 5 of 5 (will take about 10 minutes depending on CPU speed)"
pause
exit /b
I'm want the no. display in the box
Ex. Stage [1] of [5] (will take about 15 minutes depending on CPU speed)
the next output should be like this..
Ex. Stage [2] of [5] (will take about 10 minutes depending on CPU speed)
not this
Stage [1] of [5] (will take about 15 minutes depending on CPU speed)
Stage [2] of [5] (will take about 10 minutes depending on CPU speed)
thank you,