Search code examples
c#windowswindows-task-schedulerwindows-11

How to repeat tasks every 1 minute in Windows 11 task scheduler?


I have a C# console application that must be run every minute to check data, therefore I use a task scheduler. However, the time available to repeat the task is limited in the Windows 11 task scheduler.

(https://i.sstatic.net/MHScA.png)

The minimum time available for the dropdown is only 5 minutes. Can I add more specific times to repeat tasks?


Solution

  • You can manually edit value in the field:

    enter image description here

    enter image description here

    Also you can consider starting the app to run constantly and use "in-process" scheduling (with one of the framework-provided timers for example).