Remove-VDIPoolMember

NAME

Remove-VDIPoolMember

SYNOPSIS

Removes a VDI Pool Member from a VDI Pool.

SYNTAX

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

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

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

DESCRIPTION

Removes a VDI Pool Member from a VDI Pool.

PARAMETERS


- Id <uint>
The VDI Pool Member ID.

        Required?                    true
        Position?                    named
        Default value                0
        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 ----------

Remove-VDIPoolMember -VDIPoolId 10 -Id 1

Removes the specified VDI pool member from the specified VDI pool.

RELATED LINKS