4
1
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!
One more note - while the 'schtasks' command can't be used on a remote computer, you can schedule the
schtasks
command to be executed on a remote computer using theat
command. – lordcheeto – 2015-06-02T02:08:56.197Awesome! Much better than the old AT command. – Mike Christensen – 2012-11-15T17:27:50.427
Oh one issue with this is it pops up a command prompt on the screen every 5 minutes, which is kinda annoying. Any way to get it to run the command silently? It's just a console program (EXE) I'm running. – Mike Christensen – 2012-11-15T17:31:18.700
Run with /RU as another user should help OR here is another solution http://superuser.com/questions/195249/how-to-execute-a-scheduled-task-with-schtasks-without-opening-a-new-command-li
– week – 2012-11-15T17:37:51.193The VBS wrapper works.. Good enough for now! Thanks.. – Mike Christensen – 2012-11-15T17:41:34.073