Get-VDITemplate

NAME

Get-VDITemplate

SYNOPSIS

Retrieves settings of a RAS Template.

SYNTAX

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

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

DESCRIPTION

The Get-VDITemplate cmdlet is used to retrieve properties of a RAS Template.

PARAMETERS


- Name <string>
RAS Template name.

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

- SiteId <uint>
The site ID from which to retrieve the RAS Template info.

If the parameter is omitted, the site ID of the Licensing Server will be used.

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

- Id <uint>
The ID of a RAS Template for which to retrieve the information.

        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

PSAdmin.VDITemplate

EXAMPLES


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

Get-VDITemplate 2 | Format-List

Retrieve the RAS Template with ID 2.

The Format-List cmdlet formats the display output to include the complete list of the returned properties.

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

Get-VDIGuest -Name MyVDITemplate -SiteId 2

Retrieve the RAS Template from the specified site.

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

Get-VDIGuest | Format-List

Retrieves list of all RAS Templates from the Licensing Server site.

The Format-List cmdlet formats the display output to include the complete list of the returned properties.

RELATED LINKS