diff options
author | Matthew Chapman <matty@samba.org> | 1999-04-23 15:01:35 +0000 |
---|---|---|
committer | Matthew Chapman <matty@samba.org> | 1999-04-23 15:01:35 +0000 |
commit | 16758a425265afaf6d4ba2636fdafbdb5b26b708 (patch) | |
tree | edffd5716e09ab8eb157b6e6970ff5621bbed5c3 /source3/rpcclient/rpcclient.c | |
parent | 2bc0641b88bb770812fbfbcfa8cf63b60eb49e45 (diff) | |
download | samba-16758a425265afaf6d4ba2636fdafbdb5b26b708.tar.gz samba-16758a425265afaf6d4ba2636fdafbdb5b26b708.tar.bz2 samba-16758a425265afaf6d4ba2636fdafbdb5b26b708.zip |
New rpcclient command "at" for NT scheduler control, a slightly improved
version of the NT command.
at { time [/INTERACTIVE] [{/EVERY|/NEXT}:5,Sun,...] command | [/DEL] [jobid] }
Examples (options used in abbreviated form):
at ; Shows all jobs
at 1 ; Detail on job 1
at /D ; Deletes all jobs
at /D 1 ; Deletes job 1
at 11:11:11AM /I /N:1 d:\humour\silly.exe ; First of next month
at 9:00AM /E:M,T,W,Th,F net send MATTY Hi ; Each weekday
at 11:00PM /E c:\winnt\backup.exe ; Every day
(This used to be commit cf8c476d2eec24c150877b6bb8af7f7875cc1840)
Diffstat (limited to 'source3/rpcclient/rpcclient.c')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 870555e6e2..20cc3ad49b 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -106,6 +106,7 @@ struct } commands[] = { {"svcenum", cmd_svc_enum, "[-i] Lists Services Manager"}, + {"at", cmd_at, "Scheduler control (at /? for syntax)"}, {"regenum", cmd_reg_enum, "<keyname> Registry Enumeration (keys, values)"}, {"regdeletekey",cmd_reg_delete_key, "<keyname> Registry Key Delete"}, {"regcreatekey",cmd_reg_create_key, "<keyname> [keyclass] Registry Key Create"}, |