Change task time in Windows

2

I need to set up a Windows task so that it runs every 30 seconds, but the task scheduler has a minimum time of 1 minute and you try to change it to (30 seconds || 0.5 minutes || 0.5 minutes) I always get the same error message:

If you know of any way to resolve this, maybe some script where I can determine some time interval between one run and another or maybe some way to do an advanced setup who knows.

    
asked by anonymous 22.08.2017 / 20:13

1 answer

2

My advice to you is: create a Windows service , that's what they're for.

In Windows Task Scheduler it is impossible to create triggers with less than 1 minute of repetition.

In contrast, multiple triggers can be set. In order for you to be able to run your task every 30 seconds, you will need two triggers that repeat every 1 second, where one of them starts at X hours and another starts 30 seconds after X .

    
22.08.2017 / 20:36