1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2
3STRINGTABLE
4BEGIN
5    IDS_USAGE "The AT command schedules commands and programs to run on a computer at\n\
6a specified time and date. The Schedule service must be running to use\n\
7the AT command.\n\n\
8AT [\\\\computername] [ [id] [/DELETE] | /DELETE [/YES]]\n\
9AT [\\\\computername] time [/INTERACTIVE]\n\
10    [ /EVERY:date[,...] | /NEXT:date[,...]] ""command""\n\n\
11\\\\computername     Specifies a remote computer. Commands are scheduled on the\n\
12                   local computer if this parameter is omitted.\n\
13id                 Is an identification number assigned to a scheduled\n\
14                   command.\n\
15/DELETE            Cancels a scheduled command. If id is omitted, all the\n\
16                   scheduled commands on the computer are canceled.\n\
17/YES               Used with cancel all jobs command when no further\n\
18                   confirmation is desired.\n\
19time               Specifies the time when command is to run.\n\
20/INTERACTIVE       Allows the job to interact with the desktop of the user\n\
21                   who is logged on at the time the job runs.\n\
22/EVERY:date[,...]  Runs the command on each specified day(s) of the week or\n\
23                   month. If date is omitted, the current day of the month\n\
24                   is assumed.\n\
25/NEXT:date[,...]   Runs the specified command on the next occurrence of the\n\
26                   day (for example, next Thursday). If date is omitted, the\n\
27                   current day of the month is assumed.\n\
28""command""          Is the command or batch program to be run.\n"
29
30    IDS_DELETE_ALL "This operation will delete all scheduled jobs.\n"
31    IDS_NEW_JOB "Added a new job with job ID = %lu\n"
32    IDS_JOBS_LIST "Status ID   Day                     Time          Command Line\n"
33    IDS_NO_ENTRIES "There are no entries in the list.\n"
34
35    IDS_CONFIRM_QUESTION "Do you want to continue this operation? (Y/N) [N]: "
36    IDS_CONFIRM_INVALID  "\nThis is an invalid response.\n"
37    IDS_CONFIRM_YES "Y"
38    IDS_CONFIRM_NO "N"
39
40    IDS_TODAY "Today"
41    IDS_TOMORROW "Tomorrow"
42    IDS_EVERY "Every"
43    IDS_NEXT "Next"
44
45    IDS_YES "Yes"
46    IDS_NO "No"
47    IDS_ERROR "ERROR"
48    IDS_OK "OK"
49
50    IDS_TASKID      "Task ID:       %lu\n"
51    IDS_STATUS      "Status:        %s\n"
52    IDS_SCHEDULE    "Schedule:      %s\n"
53    IDS_TIME        "Time of day:   %s\n"
54    IDS_INTERACTIVE "Interactive:   %s\n"
55    IDS_COMMAND     "Command:       %s\n"
56END
57