Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 825
Wahyu Arya Pambudi Avatar asked Nov 18 '25 15:11

Wahyu Arya Pambudi


1 Answers

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

like image 198
Guru Stron Avatar answered Nov 21 '25 05:11

Guru Stron