Perhaps you should take a look at the simple "at" command line scheduler:
C:\Documents and Settings\mahendra.patil>at/?
The AT team plans commands and programs to run on the computer at the 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"
\ computer_name Specifies the remote computer. Commands are scheduled on the local computer if this parameter is omitted.
id The identification number assigned to the scheduled command.
/ delete Cancels a scheduled command. If id is omitted, all scheduled commands on the computer are canceled.
/ yes Used to cancel all job commands, if not, confirmation is required.
time Indicates the time the command started.
/ interactive Allows the job to interact with the desktop of the user who is logged in during the job.
/ each: date [, ...] Runs the command on each specified day (week) of the week or month. If the date is omitted, the current day of the month is assumed to be
/ next: date [, ...] Runs the specified command the next day it is entered (for example, next Thursday). If the date is omitted, the current day of the month is assumed.
"command" Whether a Windows NT command or a batch program is running.
Mahendra Dec 28 '08 at 12:07 2008-12-28 12:07
source share