Batch File Timer

by Raven Codes in Circuits > Software

21527 Views, 3 Favorites, 0 Comments

Batch File Timer

2015_03_10_12_07_50_1280x800.bmp

How to Make a timer with notepad:

With easy steps...

How to Create Timer

Type this

@echo off
mode 32,10

title Timer

:start
title Enter time to countdown from.

cls
echo Enter time to countdown from.

set/p "time=>
set time=%time%

:loop
cls

set /a time=%time%-1
if %time%==0 goto timesup

title Counting down...

echo.
echo.

echo.
echo Countdown - [%time%]

ping localhost -n 2 > nul
goto loop

:timesup
echo Time is Up!!

pause
goto start

How to Save and Run Timer

Save as Timer.bat

to run double click on it