Get-RASTemplateStatus

NAME

Get-RASTemplateStatus

SYNOPSIS

Retrieves the status of a RAS Template.

SYNTAX

Get-RASTemplateStatus [[-Idarrow-up-right] <uint>] -ObjTypearrow-up-right {RDSTemplate | VDITemplate | AVDTemplate} [<CommonParametersarrow-up-right>] Get-RASTemplateStatus [[-InputObjectarrow-up-right] <Templatearrow-up-right>] -ObjTypearrow-up-right {RDSTemplate | VDITemplate | AVDTemplate} [<CommonParametersarrow-up-right>] Get-RASTemplateStatus [[-Namearrow-up-right] <string>] [[-SiteIdarrow-up-right] <uint>] -ObjTypearrow-up-right {RDSTemplate | VDITemplate | AVDTemplate} [<CommonParametersarrow-up-right>]

DESCRIPTION

Retrieves the status of a RAS Template.

PARAMETERS

-Name <string> The name of the VDI Template for which to retrieve the information.

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

-Id <uint> The ID of the VDI Template. To obtain the ID, use the Get-Template cmdlet.

-SiteId <uint> Site ID from which to retrieve the specified VDI Template status information. If the parameter is omitted, the site ID of the Licensing Server will be used.

-InputObject <Templatearrow-up-right> An object of type Template representing the VDI Template. To obtain the object, use the Get-Template cmdlet.

-ObjType <Templatearrow-up-right> Template object type. Possible values: RDSTemplate, VDITemplate, AVDTemplate

<CommonParameters>

INPUTS

Templatearrow-up-right

OUTPUTS

TemplateStatusarrow-up-right

EXAMPLES

---------- EXAMPLE 1 ---------- Get-RASTemplateStatus -ObjType VDITemplate -Name "My Template" | Format-List Retrieves the status of the RAS VDI Template specified by name. The Format-List cmdlet formats the display output to include all available properties. ---------- EXAMPLE 2 ---------- Get-RASTemplateStatus -ObjType VDITemplate -Id 2 | Format-List Retrieve the status of the RAS VDI Template with ID 2. The Format-List cmdlet formats the display output to include the complete list of the returned properties.

Last updated