@echo off rem rem Alarm++ can pass a batch file like this rem arguments to indicate what the alarm is, rem when it's set for, and any information in rem the message that you want. rem rem If the alarm information isn't being passed rem correctly, please remember that the variable rem names are case-sensitive. rem echo. echo This batch file merely prints the passed arguments. echo For more information on writing batch files, please echo see the Windows help system. echo. for %%a in (%*) do echo %%a echo. pause