Compare-VBRUnstructuredBackupFLRItem
Short Description
Compares backed-up objects with objects on production file share or object storage.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Compare-VBRUnstructuredBackupFLRItem -Session <VBRUnstructuredBackupFLRSession> -Item <VBRUnstructuredBackupFLRItem[]> [-RunAsync] [<CommonParameters>] |
Detailed Description
This cmdlet compares backed-up objects with objects on production file share or object storage.
Important |
|
The cmdlet compares only backup files recovered to a certain restore point. You can not compare all versions of backup files. To recover files to a certain restore point, run the |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Item |
Specifies an array of backed-up objects that you want to compare with production file share or object storage.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
RunAsync |
Defines that the command returns immediately without waiting for the task to complete. |
|
False |
Named |
False |
|
Session |
Specifies restore sessions started to recover objects backed-up by file backup jobs and object storage backup jobs. The cmdlet will compare the objects restored within this session with objects on production file share or object storage.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRUnstructuredBackupFLRItem object that contains compare state of backed-up objects with objects on production file share or object storage.
Examples
Comparing Backed-Up Objects with Objects on Production Object Storage
This example shows how to compare backed-up objects with objects on production object storage.
|
$restorepoint = Get-VBRUnstructuredBackupRestorePoint -ID "51e4eced-3fce-465b-b516-f24cb5a068a4" $session = Start-VBRUnstructuredBackupFLRSession -RestorePoint $restorepoint[3] $item = Get-VBRUnstructuredBackupFLRItem -Session $session Compare-VBRUnstructuredBackupFLRItem -Item $item[0,1,4,5] -Session $session |
Perform the following steps:
- Run the
Get-VBRUnstructuredBackupRestorePointReturns restore points created by file backup jobs and object storage backup jobs. cmdlet. Specify theIDparameter value. Save the result to the$restorepointvariable.The
Get-VBRUnstructuredBackupRestorePointcmdlet will return an array of restore points. Mind the ordinal number of the necessary restore point (in our example, it is the fourth restore point in the array). - Run the
Start-VBRUnstructuredBackupFLRSessionStarts a restore session to explore objects backed-up by file backup jobs and object storage backup jobs. cmdlet. Specify theRestorePointparameter value. Save the result to the$sessionvariable. - Run the
Get-VBRUnstructuredBackupFLRItemReturns backed-up objects created by file backup jobs or object storage backup jobs. cmdlet. Specify theSessionparameter value. Save the result to the$itemvariable. - Run the
Compare-VBRUnstructuredBackupFLRItemcmdlet. Set the$item[0,1,4,5]variable as theItemparameter value. Set the$sessionvariable as theSessionparameter value.
Related Commands
Get-VBRUnstructuredServerReturns unstructured data sources added to the inventory.Start-VBRUnstructuredBackupFLRSessionStarts a restore session to explore objects backed-up by file backup jobs and object storage backup jobs.Get-VBRUnstructuredBackupFLRItemReturns backed-up objects created by file backup jobs or object storage backup jobs.