Windows – Is it possible to use the AT command to run a command every 5 minutes

scheduled-taskswindowswindows 7windows task scheduler

The Windows AT command has an "every" parameter, which can take days of the week, and a "time" parameter specifying the time of day, however I'd like to run a command every 5 minutes. Any way to do this? I've looked at some similar questions, but nothing gives an actual example of the command line syntax for this.

I'm running Windows 7. Thanks!

Best Answer

Answer to your question is no, but on the other hand you can use even better utility called schtasks.

This should be up every 5min

schtasks /create /tn "CLICKCLACK" /tr tiktak.bat /sc minute /mo 5

Related Question