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.batREM 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":againecho offCHOICE /n /C 12 /d 1 /t 300if errorlevel == 1 goto singif errorlevel == 2 goto sing:singstart "C:\Program Files\Windows Media Player\wmplayer.exe" "D:\dwnlds\AIRTEL.wav"