schedule suggestion

very often i need to start some scripts from specific time to another specific time - for example - every day from 18:00 to 23:00
unfortunately i can do this with MT - please add this schedule improvment :slight_smile:

Use three scheduled scripts.

One which does what you want done, as if you wanted it done all the time.

Then a second script, which enables the first script, at your desired time.

And a third which disables the first.

I.e.:

/sys sch add name="pinger" on-event="/ping 1.2.3.4 count=1" start-time=00:00:00 interval=1s

/sys sch add name="pinger-start" on-event="/sys sch disable pinger" start-time=18:00:00 interval=1d

/sys sch add name="pinger-stop" on-event="/sys sch disable pinger" start-time=23:00:00 interval=1d

–Eric

Thanks Eric i have solution with simular script - but i whant to be includet like normal option in MT OS :slight_smile: