I want my At jobs to have a nice name – Use Schtasks

Written by James McDonald

March 4, 2009

I used at to create a scheduled task that ran at 9:02 every week day:

at 09:02 /every:m,t,w,th,f C:\path\to\my\batchfile.bat

However when looking at the task in the scheduled tasks control panel all you see is At<id number of at job> e.g. At1. I wanted a nice descriptive name like “CheckMyConnection” not the criptic AtX

Enter schtasks (wrapped for readability the command should all be on one line):

schtasks /CREATE 
/RU SYSTEM 
/SC WEEKLY 
/TN "CheckLink" 
/D MON,TUE,WED,THU,FRI 
/ST 09:02:00 
/TR C:\path\to\my\batchfile.bat

Run a job on the 17th of every month at 08:02AM

schtasks /CREATE 
/RU SYSTEM 
/SC MONTHLY 
/TN "SendRichohCount" 
/D 17 
/ST 08:02:00 
/TR c:\path\to\my\script.vbs

The problem with both at and schtasks is that I couldn’t figure out how to create a scheduled task that runs multiple times daily. Such as at 09:02:00 and 15:02:00.

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...

Ubuntu on Hyper-v

It boils town to installing linux-azure # as root or sudo apt-get update apt-get install linux-azure...