Sorry if this or similar has been asked, and I hope I'm missing something stupid and this is easy, but. How do I make a task using the schtasks /create
command that will start say every day at 7 and repeat every hour either indefinitely or for the duration of a day?
If I do
schtasks /create /tn "test" /tr "\"C:\Program Files\test.exe"" /sc HOURLY /mo 1
it will only trigger if the specified date and time are hit.
If I do
schtasks /create /tn "test" /tr "\"C:\Program Files\test.exe"" /sc DAILY /mo 1
it will only trigger once a day.
Thanks in advance!
timeout
and loop to the start again. The scheduled task can launch the batch file at 7am. – Elisavetpol