NAME

Remove-DcsRollbackGroup

SYNOPSIS

Removes a rollback group from the configuration.

SYNTAX

Remove-DcsRollbackGroup   -RollbackGroup <Object>   [ -Connection <String> ]   [ -PipelineVariable <String> ]

DESCRIPTION

Removes a rollback group from the configuration. When removed, the rollback data from the rollback group is permanently destroyed and the rollbacks from the group will no longer exist.

PARAMETERS

-RollbackGroup<Object>
RollbackGroupData object, name or ID that identifies a rollback group to remove.

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

RollbackGroupData : Object that identifies the rollback group.

OUTPUTS

NOTES

Also see Get-DcsRollbackGroup.

EXAMPLES


-------------- Example 1 Removes a rollback group specified by name --------------
Remove-DcsRollbackGroup -RollbackGroup "Virtual disk group 1 @ 3/22/2012 10:04:49 AM"
		

The cmdlet is invoked with the RollbackGroup parameter specified as "Virtual disk group 1 @ 3/22/2012 10:04:49 AM" resulting in the removal of that rollback group.


-------------- Example 2 Removes all rollback groups by piping objects --------------
Get-DcsRollbackGroup | Remove-DcsRollbackGroup
		

The cmdlet Get-DcsRollbackGroup is invoked without parameters to get all RollbackGroupData objects in the local server group. The results are piped to the cmdlet Remove-DcsRollbackGroup to remove all rollback groups.