Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


Simple Progress Bar in Batch. filter_list
Author
Message
Simple Progress Bar in Batch. #1
Here is the code.

Code:
@echo off
echo.
echo.

set i=1
echo COPYING
echo.
:start
call :I %i%
ping -n 1 127.0.0.1 > NUL
set /a i = i + 1
if /i %i% leq 100 goto start
echo.
echo.
echo COPYING SUCCESSFUL COMPLETED
echo.
PAUSE>NUL

:I
(Set /P j=.) < NUL
title %1%% Completed
exit /b

Enjoy.
[Image: nNICR.jpg]
Creds to bluedog

For a list of my contributions (includes tutorials). Click here.

If you'd like to apply for Heat, please click here.

Reply







Users browsing this thread: 1 Guest(s)