Cron Expression for Daily Backup Window
Run a task at 1:30 AM every day
Cron Expression
30 1 * * *
Understanding this Expression
This cron expression consists of 5 fields that specify when your task will run:
Minutes
30
At 30
Hours
1
At 1:00
Day of Month
*
Any value
Month
*
Any value
Day of Week
*
Any value
Summary
This schedule will run your task run a task at 1:30 am every day.