Get-VBRADForestRestorePoint
Short Description
Returns restore points for a Microsoft Active Directory forest.
Applies to
Platform: VMware, Hyper-V
Product Edition: Veeam Universal License
Syntax
|
Get-VBRADForestRestorePoint -ADForest <VBRADForest> [<CommonParameters>] |
Detailed Description
The cmdlet returns restore points that are available for the specified Microsoft Active Directory forest.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
ADForest |
Specifies the Microsoft Active Directory forest for which to return restore points. |
Accepts the VBRADForest object. To get this object, run the Get-VBRADForest 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 VBRADForestRestorePoint[] array that contains restore points for the specified Microsoft Active Directory forest.
Examples
Getting Restore Points for Microsoft Active Directory Forest
This example shows how to get all restore points available for a Microsoft Active Directory forest.
|
$forest = Get-VBRADForest Get-VBRADForestRestorePoint -ADForest $forest |
Perform the following steps:
- Run the Get-VBRADForest cmdlet. Save the result to the $forest variable.
- Run the Get-VBRADForestRestorePoint cmdlet. Set the $forest variable as the ADForest parameter value.
Related Commands