Best way to run a procedure every 3 hours

Hey All

Whats the best way to schedule a procedure to run say every 3 hours?
Or daily?

I’m sort of thinking Windows Task Scheduler, but I’m not sure?

Sean H

I had a need for similar but ended up solving it with a windows service and .net job scheduling thing https://www.hangfire.io, in fact I think I did a topic about it on here somewhere.
The Windows scheduler evaluated as too hard, not flexible or suitable to what I knew I would end up needing.
I wouldn’t rule it out of course, just depends what suits you best.

This one:

I think I’ll try the windows scheduler for now and see how it goes.
If that proves a pain I’ll look into a service of some form