SPBM Replication Category
Cmdlets are usually implemented around resource operations. The four basic operations are CREATE, READ, UPDATE and DELETE. This set of operations is known as CRUD. Most of the cmdlets support CRUD which are respectively cmdlets that start with the New/Get/Set/Remove cmdlet verbs but they also may have additional operations.
Step 1: Retrieve a object by running a Get command
You can READ objects by using Get-SpbmReplicationGroup cmdlet. See example below:
Get-SpbmReplicationGroup -Name 'ReplicationGroup' -FaultDomain $faultDomain
Step 2: Explore More Related Commands:
Get-SpbmReplicationPair | This cmdlet retrieves the relation of replication groups in a pair of source and target replication group. |
Start-SpbmReplicationFailover | This cmdlet performs a failover of the devices in the specified replication groups. |
Start-SpbmReplicationPrepareFailover | This cmdlet prepares the specified replication groups to fail over. |
Start-SpbmReplicationPromote | This cmdlet promotes a target replication group from InTest to FailedOver state. |
Start-SpbmReplicationReverse | This cmdlet initiates reverse replication, by making the currently failed over replication group the source and its peer replication group the target. |
Start-SpbmReplicationTestFailover | This cmdlet performs a test failover of a target replication group. |
Stop-SpbmReplicationTestFailover | This cmdlet stops the test failover on the specified replication groups and tries to perform a cleanup on the target site. |
Sync-SpbmReplicationGroup | This cmdlet synchronizes the data between source and replica for the specified replication group. |