Get-RDSSchedule

NAME

Get-RDSSchedule

SYNOPSIS

Retrieves the RD Session Host scheduler job information.

SYNTAX

Get-RDSSchedule [[-Name] <string>] [[-SiteId] <uint>] [<CommonParameters>]

Get-RDSSchedule [[-Id] <uint>] [<CommonParameters>]

DESCRIPTION

The Get-RDSSchedule command returns all or individual RD Session Host server scheduler jobs.

PARAMETERS


-Name <string>
Scheduler job name.

        Required?                    false
        Position?                    0
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-SiteId <uint>
Site ID from which to retrieve the schedule job.

        Required?                    false
        Position?                    1
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Id <uint>
Scheduler job ID.

        Required?                    false
        Position?                    0
        Default value                0
        Accept pipeline input?       false
        Accept wildcard characters?  false

<CommonParameters>
        This cmdlet supports the common parameters: Verbose, Debug,
        ErrorAction, ErrorVariable, WarningAction, WarningVariable,
        OutBuffer, PipelineVariable, and OutVariable. For more information, see 
        about_CommonParameters documentation. 

INPUTS

-none-

OUTPUTS

RDSSchedGroupRebootItem

EXAMPLES


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

Get-RDSSchedule -SiteId 1 -Name TSSchedule1

Retrieves the info about the scheduler job named 'TSSchedule1'.

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

Get-RDSSchedule -Id 1

Retrieves the info about the scheduler job with ID 1.

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

Get-RDSSchedule -SiteId 1

Retrieves the info about all scheduler jobs from the specified site.

RELATED LINKS