I've been developing with a lot of long running TIs and trying to multitask in between, so in order to alert me when a process has finished with a sound, I put this in the Epilog.
Code: Select all
#===================================================================#
# Play sound to alert when process is completed
#===================================================================#
ExecuteCommand( 'D:\TM1\_Scripts\beep.bat', 0 );
Code: Select all
@echo off
echo •
copy con beep.bat [return]
[ctrl-G][ctrl-Z][return]
See http://www.wikihow.com/Make-CMD-Beep for full walkthrough.