Is it possible to set scheduler to run a task at the start of each month.
What we have done is set a daily scheduler that runs a script that checks what day of the month it is and only runs if it’s the right day of the month to process the remaining part of the script, if it isn’t, it just exits.
Sound like what i need can you post it
:local date
:local day
:set date [/system clock get date]
:set day [:pick $date 4 6]
:if ([$day] = "03" ) do={ :log info "This runs" } else={ :log info "Does not run" }