Is it possible to use cron to accomplish the following particular use case? I desire for the scheduler to trigger every five minutes from a specific start time, such as 1:00 PM to 5:45 PM.
Use two lines: */5 13-16 * * * covers 13:00-16:55 and 0-45/5 17 * * * covers 17:00-17:45. One minute field applies to every hour, so the last hour is split off.