Wednesday, 23 March 2011

Installation with progress bar using batch programmaing

Batch programming is such a powerful language having highest execution speed
here i have batch program to installation. this can be customized to show progress status of command execution
try it :)

just copy and paste in notepad save as .bat and click done !!!!

================================================================
@echo off
setlocal enabledelayedexpansion
ECHO.
set i=1
(Set /P put=Installation Process Started...) <>nul
set /a i = i + 1
if /i %i% leq 100 goto start

ECHO.
(Set /P j=Installation Process Finished...) <> Nul
goto :EOF

:Disp
(Set /P put=#) < NUL
title %1%% Installation Completed
exit /b
endlocal
================================================================

No comments: