# This is very simple CronTab.
# Ranges of numbers are NOT allowed.
# Lists are NOT allowed.
# Commands are executed via CreateProcess() - NOT system() !
#
# This is BAD - redirecting not working: perl C:\etc\test.pl > C:\etc\$$$
# This working: CMD /C "perl C:\etc\test.pl > C:\etc\$$$"
#
#------------------------------------------------------------
# REMAINER ENTRY
#  if first charecter in minute field is `%', command is fired, when:
#  0 == (((current-Hour * 60) + current-Minute)  %  crontab-minute)
# Sample:
#   %1  --> 0,1,2,3...
#   %2  --> 0,2,4,6...
#   %3  --> 0,3,6,9...
#   %61 --> 00:00, 01:01, 02:02, 03:03...
#------------------------------------------------------------
# Event (with '@') is fired, when Internet connection via modem is established
#  ( this is for daytime clock in my home PC :) )
#
#     * * * * * @C:\etc\GetTime.CMD
#------------------------------------------------------------
# Internal commands:
#  :REBOOT      - reboot
#  :SHUTDOWN    - shutdown
#  :POWEROFF    - shutdown+poweroff, system must support the power-off feature
#  :LOCK        - Lock Computer, NT5+
#  :HANGUP      - hangup modem
#
#------------------------------------------------------------
#
# day-of-week: Sunday = 0, Monday = 1,...
#
#  minute  hour  day-of-month  month  day-of-week
#
16 21 * * * *C:\etc\RouteAdd.CMD
%2 * * * *   C:\etc\Test0.CMD
* * * * * @C:\etc\GetTime.CMD
5 23 * * * :POWEROFF
