Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

-------------------------- EXAMPLE 1 --------------------------

C:\PS>Stop-MasterJobSchedulerMaster

Stops the JobScheduler instance with normal termination.
This is the same as the operation: Stop-Instance -Action "terminate"

-------------------------- EXAMPLE 2 --------------------------

C:\PS>Stop-Master JobSchedulerMaster -Service

Stops the JobScheduler Windows service with normal termination,
i.e. with -Action "terminate" without any timeouts and cluster options being applied.

...

-------------------------- EXAMPLE 4 --------------------------

C:\PS>Stop-Master JobSchedulerMaster -Action kill

Kills the JobScheduler process and any tasks without proper cleanup.

-------------------------- EXAMPLE 5 --------------------------

C:\PS>Stop-Master JobSchedulerMaster -Cluster -Timeout 30

Carries out the -Action "terminate" operation for all members of a JobScheduler Cluster.
All running tasks are sent a SIGTERM signal and after expiration of the timeout
any running tasks will be sent a SIGKILL signal.

-------------------------- EXAMPLE 6 --------------------------

C:\PS>Stop-Master JobSchedulerMaster -Restart -Cluster -Timeout 30

...