New-VDIPool

NAME

New-VDIPool

SYNOPSIS

Creates a new VDI Pool.

SYNTAX

New-VDIPool [-Name] <string> [[-SiteId] <uint>] [-Description <string>] [-Enabled <bool>] [<CommonParameters>]

DESCRIPTION

Creates a new VDI Pool. Individual members can be added to the VDI pool using the Add-VDIPoolMember cmdlet.

PARAMETERS


-Name <string>
The name of the target VDI Pool.

This must be the actual VDI Pool name used in the RAS farm.

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

-SiteId <uint>
Site ID in which to modify the specified VDI Pool.

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

-Description <string>
A user-defined VDI Pool description.

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

-Enabled <bool>
Enable or disable the VDI Pool upon creation.

If the parameter is omitted, the VDI Pool is initialised as Disabled.

        Required?                    false
        Position?                    named
        Default value                False
        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

VDIPool

EXAMPLES


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

New-VDIPool "My VDI Pool"

Creates a new VDI Pool with the specified name.

RELATED LINKS