📜 ⬆️ ⬇️

Schtasks graphical group task management on computers in a Windows domain

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.:




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.

Source: https://habr.com/ru/post/135320/


All Articles