Start-VBRApplicationBackupSnapshotRecovery
Short Description
Starts recovery from an application backup repository snapshot.
Platform: VMware, Hyper-V
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Start-VBRApplicationBackupSnapshotRecovery -Snapshot <VBRApplicationBackupSnapshot> [-Reason <String>] [-Force] [-RunAsync] [<CommonParameters>] |
Detailed Description
This cmdlet starts a recovery session from an application backup repository snapshot. Veeam Backup & Replication will revert the snapshot to export its data by its original NFS path.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Force |
Defines that the cmdlet will start recovery without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
Reason |
Specifies the reason for starting recovery. The information you provide will be saved in the session history so that you can reference it later. |
|
False |
Named |
False |
|
RunAsync |
Defines that the cmdlet will run the recovery operation asynchronously. The cmdlet returns a session object immediately without waiting for the recovery to complete. |
|
False |
Named |
False |
|
Snapshot |
Specifies the snapshot from which you want to recover the application backup repository.
Accepts the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the VBRSession object that contains information about the recovery session.
Examples
Starting Recovery from Application Backup Repository Snapshot
This example shows how to start recovery from an application backup repository snapshot.
|
$snapshot = Get-VBRApplicationBackupSnapshot -Name "ApplicationBackupSnapshot01" Start-VBRApplicationBackupSnapshotRecovery -Snapshot $snapshot |
Perform the following steps:
- Run the
Get-VBRApplicationBackupSnapshotReturns application backup snapshots. cmdlet. Specify theNameparameter value. Save the result to the$snapshotvariable. - Run the
Start-VBRApplicationBackupSnapshotRecoverycmdlet. Set the$snapshotvariable as theSnapshotparameter value.
Related Commands
Get-VBRApplicationBackupSnapshotReturns application backup snapshots.