What's new

Closed how to make stopwatch using cmd and notepad

Status
Not open for further replies.

connectibyte

Addict
Joined
May 18, 2015
Posts
53
Reaction
58
Points
118
Age
29
steps:
1.)open notepad
2.)type this code

Countdown:
echo off
title Timer
set time=30 (you can make the time whatever you want)
:loop
set /a time=%time%-1
if %time%==0 goto timesup
echo %time%
ping localhost -n 2 > nul
goto loop
:timesup
echo Time is Up!
echo Press Any Key To Exit!
pause >nul
exit
3.)save it as "kahit anong gudtong name.bat" e.g timer.bat
irun :)
 
Dear connectibyte,

Since 2 years have passed since the last reply in this thread, I am locking it to prevent necroposting. Feel free to start a new thread or contact any forum staff if you want this to be reopened.

Thread closed.
 
Status
Not open for further replies.
Back
Top