Thursday, September 8, 2011

15 min Alarm part3

This is the 'relative time' based reminder. it will play a song every 5 mins , one can always change the time . The time specified is in seconds and cannot exceed 999 secs.

REM File name: Reminder.bat
REM Description: this is a Batch file that plays a song every 5 mins.
REM one can change the time by changing the number of secs which is here as '300' in the CHOICE statement.
REM The song can be specified in place of "D:\dwnlds\AIRTEL.wav"
:again
echo off
CHOICE /n /C 12 /d 1 /t 300
if errorlevel == 1 goto sing
if errorlevel == 2 goto sing

:sing
start "C:\Program Files\Windows Media Player\wmplayer.exe" "D:\dwnlds\AIRTEL.wav"

No comments:

Post a Comment