You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

NAME

Get-JobSchedulerStatus

SYNOPSIS

Return summary information and statistics information from a JobScheduler Master.

SYNTAX

Get-JobSchedulerStatus -Statistics -Display -NoOutputs <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 that detailed statistics information about orders and jobs is returned.

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

Display

-Display <SwitchParameter>
Optionally specifies formatted output to be displayed.

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

NoOutputs

-NoOutputs <SwitchParameter>
Optionally specifies that no output is returned by this cmdlet.

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

about_jobscheduler

EXAMPLES

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

C:\PS>Get-Status

Returns summary information about the JobScheduler Master.

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

C:\PS>Get-Status -Statistics -Display

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

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

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

Returns a status information object including statistics information.

  • No labels