The system administrator is familiar with the commands for scheduling and managing at and schtasks tasks. This article will examine examples of work in Schtasks, as well as a solution for managing tasks in graphical mode.
Schtasks /?
:
, ,
. AT.exe.
at /?
AT
. AT ,
.
Schtask has a more flexible and deep settings. Examples:
Task creation:
')
schtasks / create / s computername "/ TN" task_name & "/ TR" program_path "/ SC once / st start_time
Run task:
schtasks / Run / TN task_name
Checking task status:
schtasks / Query
Delete a task:
schtasks / Delete / TN task_name.
All is well, if it is one task and one or several computers. And how to plan a lot of tasks on many computers? Copy the file locally to this computer, run these tasks, check the status of the execution and then delete these tasks if the launch failed?
This is how my project ManGroupTask was born. Written on Vb .Net (version of MS 2005 compilers) Net Framework 2.:
- Copy file to remote computer
- Task planning
- Running task
- View task status
- Delete task
- Automatically perform the same actions on multiple computers.
- Retrieving and saving a list of computers in a graphic form Domain export-Import

The ManGroupTask program can be downloaded at the
address , the source code is also included in the archive, which allows you to refine this program.