NAME

Remove-DcsPool

SYNOPSIS

Removes a disk pool.

SYNTAX

Remove-DcsPool   [ -Server <String> ]   -Pool <Object>   [ -Connection <String> ]   [ -PipelineVariable <String> ]

DESCRIPTION

Removes a disk pool. The pool will be permanently deleted from the server configuration. Pools cannot be removed if virtual disks are created from them, see Remove-DcsVirtualDisk.

PARAMETERS

-Server<String>
Computer name or ID of the server. The computer name must be unique or the name must be fully qualified.

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

-Pool<Object>
DiskPoolData object, name, or ID that identifies the pool. To resolve by name, the name must be unique to the server group or the server must be specified.

Required: true
Position: named
Default value:
Accept pipeline input: true (ByValue)
Accept wildcard characters: false

-Connection<String>
Alias of the connection to the server group. If not specified, the default connection is used.

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

-PipelineVariable<String>

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

INPUTS

DiskPoolData : Object that identifies and describes the pool.

OUTPUTS

NOTES

Also see Remove-DcsPoolMember, Get-DcsPool.

EXAMPLES


-------------- Example 1 Removes a pool specified by name --------------
Remove-DcsPool -Server SSV1 -Pool "Disk pool 3"
		

Removes the pool named "Disk pool 3" on server "SSV1" from the server group configuration.