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

Compare with Current View Page History

« Previous Version 3 Next »

NAME

Get-JobSchedulerCalendar

SYNOPSIS

Shows the next start dates for jobs and orders of JobScheduler Master.

SYNTAX

Get-JobSchedulerCalendar [-Days <Int32>] [-FromDate <DateTime>] [-ToDate <DateTime>] -Display -NoOutputs [<Co
mmonParameters>]

DESCRIPTION

The next start date for jobs and orders is calculated by JobScheduler Master.
This cmdlet returns a list of start date objects that indicate the next start time.

PARAMETERS

Days

-Days <Int32>
Optionally specifies the number of days starting from the current time for which
start dates are returned.

Default: 1

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

FromDate

-FromDate <DateTime>
Optionally specifies the date starting from which start dates are calculated.

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

ToDate

-ToDate <DateTime>
Optionally specifies the date for which the calculation of start dates ends.

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

Display

-Display <SwitchParameter>
Specifies that formatted output is displayed.

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

NoOutputs

-NoOutputs <SwitchParameter>
Specifies that no output is created, i.e. no objects are returned.

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

about_jobscheduler

EXAMPLES

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

C:\PS>$startDates = Get-Calendar

Returns start dates for the next 24 hrs.

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

C:\PS>$startDates = Get-Calendar -Days 3

Returns the start dates for the next 3 days.

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

C:\PS>$startDates = Get-Calendar -FromDate 2016-06-01 -ToDate 2016-06-30

Returns the start dates between the specified dates.

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

C:\PS>Get-Calendar -Display

Displays formatted output.

  • No labels