--- title: "Get-VBRCDPShortTermRestoreInterval" description: "Returns a list of replicated states for VM replicas. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns a list of the replicated states for VM replicas in the date and time format." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcdpshorttermrestoreinterval.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > CDP Failover > Get-VBRCDPShortTermRestoreInterval" dateModified: "2026-08-19" --- # Get-VBRCDPShortTermRestoreInterval ## Short Description Returns a list of replicated states for VM replicas. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRCDPShortTermRestoreInterval -Replica [] ``` ## Detailed Description This cmdlet returns a list of the replicated states for VM replicas in the date and time format. You may want to run this cmdlet to get a list of all replicated states before you perform a failover. Run the [`Start-VBRCDPReplicaFailover`](start-vbrcdpreplicafailover.md) cmdlet to perform a failover. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Replica

Specifies a VM protected with CDP. The cmdlet will return all replicated states that are available for this replica.

Accepts the VBRCDPReplica object. To create this object, run the Get-VBRCDPReplica cmdlet.

VBRCDPReplica

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the `VBRCDPShortTermRestoreInterval` object that contains a list of the replicated states for VM replicas. ## Examples ::: example ### Getting Replicated States of VM Replicas This example shows how to get a list of replicated states that are available for the `Win07` VM protected with CDP. ``` $replica = Get-VBRCDPReplica -Name "Win07" Get-VBRCDPShortTermRestoreInterval -Replica $replica ``` Perform the following steps: 1. Run the [`Get-VBRCDPReplica`](get-vbrcdpreplica.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$replica` variable. 2. Run the `Get-VBRCDPShortTermRestoreInterval` cmdlet. Set the `$replica` variable as the `Replica` parameter. ::: ## Related Commands [`Get-VBRCDPReplica`](get-vbrcdpreplica.md)