Remove-EmcReplicaSet

Deletes a replica set from a consistency group and removes and masks LUNs for that replica set.

 

Syntax

Remove-EmcReplicaSet [-ReplicaSet] <ReplicaSet> [-DestroyReplicaLuns] [-Force] [-Silent] [-WhatIf] [-Confirm] [<CommonParameters>]

 

Parameters

-ReplicaSet <ReplicaSet>

Attributes: Required, Position: 1

Specifies the replica set to delete.

 

-DestroyReplicaLuns <SwitchParameter>

Attributes: Optional, Position: named

Specifies whether or not to destroy the replica (non-production) LUNs in the replica set.

 

-Force <SwitchParameter>

Attributes: Optional, Position: named

Allows the cmdlet to continue without asking for user confirmation.

 

-Silent <SwitchParameter>

Attributes: Optional, Position: named

Turns off all the informational and verbose messages. However, it still displays errors.

 

-WhatIf <SwitchParameter>

Attributes: Optional, Position: named

Shows what would happen if the cmdlet runs. The cmdlet is not run.

 

-Confirm <SwitchParameter>

Attributes: Optional, Position: named

Prompts you for confirmation before executing the command.

 

<CommonParameters>

This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.

 

Examples

-------------- Example 1 --------------

C:\PS>$service = Get-EmcReplicationService -ID *60*

$set = Get-EmcReplicaSet -ReplicationService $service -ID RP_PS_TEST_S1

Remove-EmcReplicaSet -ReplicaSet $set -DestroyReplicaLuns

This example destroys a replica set.