Versions Compared

Key

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

...

Name

Get-JobSchedulerStatus

SYNOPSIS

Return summary information and statistics information from a JobScheduler Master.

SYNTAX

Get-JobSchedulerStatus [-Statistics] [-Display -NoOutputs -NoCache <CommonParameters>] [<CommonParameters>]

DESCRIPTION

Summary information and statistics information are returned from a JobScheduler Master.

* Summary information includes e.g. the start date and JobScheduler release.
* Statistics information includes e.g. the number of running tasks and existing orders.

PARAMETERS

Statistics

-Statistics <SwitchParameter>
Optionally specifies Specifies that detailed statistics information about orders and jobs is returned.

Required?false
Position?named
Default valueFalse
Accept pipeline input?true (ByPropertyName)
Accept wildcard characters?false

Display

-Display <SwitchParameter>
Optionally specifies Specifies that formatted output to will be displayed, otherwise a status object will be returned that contain the respective information.

Required?false
Position?named
Default valueFalse
Accept pipeline input?

...

NoOutputs

...

...

true (ByPropertyName)
Accept wildcard characters

...

NoCache

-NoCache <SwitchParameter>
Specifies that the cache for JobScheduler objects is ignored.
This results in the fact that for each Get-JobScheduler* cmdlet execution the response is
retrieved directly from the JobScheduler Master and is not resolved from the cache.

...

?

...

...

false

...

about_jobscheduler

EXAMPLES

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

C:\PS>GetPS > Get-JobSchedulerStatus

Returns summary information about the JobScheduler Master.

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

C:\PS>GetPS > Get-JobSchedulerStatus -Statistics -Display

Returns status information and statistics information about jobs, job chains, orders and tasks. Formatted output is displayed.

-------------------------- EXAMPLE 3 --------------------------

C:\PS>$status PS > $status = $Get-JobSchedulerStatus -Statistics

Returns a an object including status information object including and statistics information.