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

56 Views Asked by At

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.stack.imgur.com/MHScA.png)

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

1

There are 1 best solutions below

1
Guru Stron On BEST ANSWER

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).