Get-VBRADForestDomainRestorePoint

Short Description

Returns restore points for an Active Directory domain.

Applies to

Platform: VMware, Hyper-V

Product Edition: Veeam Universal License

Syntax

This cmdlet provides parameter sets that allow you to:

  • Get Active Directory domain restore points using the domain.

Get-VBRADForestDomainRestorePoint -Domain <VBRADForestDomain> [<CommonParameters>]

  • Get Active Directory domain restore points using the domain controller.

Get-VBRADForestDomainRestorePoint -DomainController <VBRADForestDomainController> [<CommonParameters>]

Detailed Description

This cmdlet returns restore points that are available for the specified Active Directory domain or domain controller.

Parameters

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Domain

Specifies an Active Directory domain. The cmdlet will return restore points that contain the specified domain.

Accepts the VBRADForestDomain object. To get this object, run the Get-VBRADForestDomain cmdlet.

True

Named

True (ByValue)

DomainController

Specifies an Active Directory domain controller. The cmdlet will return restore points that contain the specified domain controller.

Accepts the VBRADForestDomainController object. To get this object, run the Get-VBRADForestDomainController cmdlet.

True

Named

True (ByValue)

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

The cmdlet returns the VBRADForestDomainRestorePoint[] object that contains information about the restore point of the Active Directory domain.

Examples

Example 1. Getting Restore Points by Domain

This example shows how to get restore points for an Active Directory domain.

$forest = Get-VBRADForest

$domain = Get-VBRADForestDomain -ADForest $forest

Get-VBRADForestDomainRestorePoint -Domain $domain

Perform the following steps:

  1. Run the Get-VBRADForest cmdlet. Save the result to the $forest variable.
  2. Run the Get-VBRADForestDomain cmdlet. Set the $forest variable as the ADForest parameter value. Save the result to the $domain variable.
  3. Run the Get-VBRADForestDomainRestorePoint cmdlet. Set the $domain variable as the Domain parameter value.

Example 2. Getting Restore Points by Domain Controller

This example shows how to get restore points for a specific domain controller.

$forest = Get-VBRADForest

$domain = Get-VBRADForestDomain -ADForest $forest

$controller = Get-VBRADForestDomainController -ADForestDomain $domain

Get-VBRADForestDomainRestorePoint -DomainController $controller

Perform the following steps:

  1. Run the Get-VBRADForest cmdlet. Save the result to the $forest variable.
  2. Run the Get-VBRADForestDomain cmdlet. Set the $forest variable as the ADForest parameter value. Save the result to the $domain variable.
  3. Run the Get-VBRADForestDomainController cmdlet. Set the $domain variable as the ADForestDomain parameter value. Save the result to the $controller variable.
  4. Run the Get-VBRADForestDomainRestorePoint cmdlet. Set the $controller variable as the DomainController parameter value.

Related Commands

Page updated 2026-07-28

Page content applies to build 13.1.0.411