Introduction
How a command line is interpreted
Batch reloading
Environment variables
Switches
Error level
String processing
Command-line arguments
Wildcards
User input
%~ (percent tilde)
Functions
Calculation
Finding files
Keyboard shortcuts
Paths
Arrays
Perl one-liners
Limitations
Built-in commands
External commands
ARP
AT
ATTRIB
BCDEDIT
CACLS
CHCP
CHKDSK
CHKNTFS
CHOICE
CIPHER
CLIP
CMD
COMP
COMPACT
CONVERT
DEBUG
DISKCOMP
DISKCOPY
DISKPART
DOSKEY
DRIVERQUERY
EXPAND
FC
FIND
FINDSTR
FORFILES
FORMAT
FSUTIL
GPRESULT
GRAFTABL
HELP
ICACLS
IPCONFIG
LABEL
MAKECAB
MODE
MORE
NET
OPENFILES
PING
RECOVER
REG
REPLACE
ROBOCOPY
RUNDLL32
SC
SCHTASKS
SETX
SHUTDOWN
SORT
SUBST
SYSTEMINFO
TASKKILL
TASKLIST
TIMEOUT
TREE
WHERE
WMIC
XCOPY
Legal & credits

AT

suggest change

Schedules a program to be run at a certain time. Has been deprecated, use SCHTASKS instead.

Links:

$ at /?
The AT command has been deprecated. Please use schtasks.exe instead.

The AT command schedules commands and programs to run on a computer at
a specified time and date. The Schedule service must be running to use
the AT command.

AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]]
AT [\\computername] time [/INTERACTIVE]
    [ /EVERY:date[,...] | /NEXT:date[,...]] "command"

\\computername     Specifies a remote computer. Commands are scheduled on the
                   local computer if this parameter is omitted.
id                 Is an identification number assigned to a scheduled
                   command.
/delete            Cancels a scheduled command. If id is omitted, all the
                   scheduled commands on the computer are canceled.
/yes               Used with cancel all jobs command when no further
                   confirmation is desired.
time               Specifies the time when command is to run.
/interactive       Allows the job to interact with the desktop of the user
                   who is logged on at the time the job runs.
/every:date[,...]  Runs the command on each specified day(s) of the week or
                   month. If date is omitted, the current day of the month
                   is assumed.
/next:date[,...]   Runs the specified command on the next occurrence of the
                   day (for example, next Thursday).  If date is omitted, the
                   current day of the month is assumed.
"command"          Is the Windows NT command, or batch program to be run.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents