I'm setting up a job to run every Monday at 10 am:
registry.Schedule(() => new MyJob()).ToRunEvery(0).Weeks().On(DayOfWeek.Monday).At(10,0);
However he apparently runs the first time and doesn't run anymore.
Am I doing the job setup correctly or is there a problem with this functionality? Can you help me?