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?
You can manually edit value in the field:
Also you can consider starting the app to run constantly and use "in-process" scheduling (with one of the framework-provided timers for example).