Stop-VBRApplicationBackupSnapshotInstantRecovery
Short Description
Stops snapshot instant recovery session for an application backup repository.
Applies to
Platform: VMware, Hyper-V
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Stop-VBRApplicationBackupSnapshotInstantRecovery -Session <VBRSession> [<CommonParameters>] |
Detailed Description
This cmdlet stops a running instant recovery session from an application backup repository snapshot. Veeam Backup & Replication will unmount the snapshot and release all resources that were allocated for the instant recovery session.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Session |
Specifies the instant recovery session that you want to stop. |
Accepts the VBRSession object. To create this object, run the Get-VBRSession cmdlet. |
True |
Named |
True (ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
None.
Examples
Stopping Instant Recovery from Application Backup Repository Snapshot
This example shows how to stop an instant recovery session started from an application backup repository snapshot.
|
$session = Get-VBRSession -Id "0814a9b4-5fba-4f20-86dd-4790a5b659ab" Stop-VBRApplicationBackupSnapshotInstantRecovery -Session $session |
Perform the following steps:
- Run the Get-VBRSession cmdlet. Specify the Id parameter value. Save the result to the $session variable.
- Run the Stop-VBRApplicationBackupSnapshotInstantRecovery cmdlet. Set the $session variable as the Session parameter value.
Related Commands