Versions Compared

Key

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

...

Code Block
languagepowershell
Suspend-MasterJobSchedulerMaster

Explanations

  • A paused Master will not start new tasks.
  • Any running tasks are continued

...

Code Block
languagepowershell
Resume-MasterJobSchedulerMaster

Explanations

  • A continued Master will immediately start any enqueued tasks.
  • Task starts that have been scheduled for a point in time when the Master was paused will be carried out immediately.

...

Code Block
languagepowershell
Set-OptionJobSchedulerOption -WebRequestTimeout 60000

Explanations

  • The Set-OptionJobSchedulerOption cmdlet is used to increase the timeout to 60 seconds.
  • Values are specified in milliseconds.

Killing running tasks

See PowerShell CLI 1.1 - Use Cases - Kill a number of tasks

Removing temporary ad hoc orders

...