Dear Friends,
Here you will learn to create a Batch File Timer.This app can be used as a countdown timer.
Steps
1.Open Notepad and copy the below code
@echo off
title Timer
set time=30
pause
: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
2. Now Save As Timer.bat (Any name with .bat will do)
3. Change Save As Type to All Files and Save
4. Open Timer.bat, It will ask "Press any key to continue"
5. Press any key and see the countdown starts......
Conclusion
Enjoy!!!
You may also like
- Create a Folder named con in Windows
- Hide Files Behind an Image
- Make a Restart Virus
- A Simple Bot for Gmail Login
Amazing article.loved reading every bit.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDelete