Get-VDIPoolMember

NAME

Get-VDIPoolMember

SYNOPSIS

Retrieves a VDI Pool Member from a VDI Pool.

SYNTAX

Get-VDIPoolMember [-VDIPoolName] <string> [[-SiteId] <uint>] [-Id <uint>] [<CommonParameters>]

Get-VDIPoolMember [-VDIPoolId] <uint> [-Id <uint>] [<CommonParameters>]

Get-VDIPoolMember [-InputObject] <VDIPool> [-Id <uint>] [<CommonParameters>]

DESCRIPTION

Retrieves a VDI Pool Member from a VDI Pool.

PARAMETERS


-Id <uint>
The VDI Pool Member ID.

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

-VDIPoolName <string>
The VDI Pool name.

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

-SiteId <uint>
Site ID where the VDI Pool is located.

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

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

-VDIPoolId <uint>
The VDI Pool ID.

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

-InputObject <VDIPool>
An object of type VDIPool identifying the target VDI Pool.

The object is obtained using the Get-VDIPool cmdlet.

        Required?                    true
        Position?                    0
        Default value                
        Accept pipeline input?       true (ByValue)
        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

VDIPool

OUTPUTS

-none-

EXAMPLES


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

Get-VDIPoolMember -VDIPoolId 10 -Id 1

Get the specified VDI pool member from the specified VDI pool.

RELATED LINKS