Get-VBRAzureInstantRecoverySession
Short Description
Returns session logs for the Instant Recovery to Microsoft Azure operation.
Applies to
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
Get-VBRAzureInstantRecoverySession -InstantRecovery <VBRAzureInstantRecovery> [-Id <guid[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns session logs for the Instant Recovery to Microsoft Azure operation. It retrieves logs for the internal steps of the recovery operation and provides details on progress, timing, and errors.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
InstantRecovery | Specifies the Instant Recovery to Microsoft Azure operation. The cmdlet will return task-level logs related to this operation. | Accepts the VBRAzureInstantRecovery object. To create or get this object, run the Start-VBRAzureInstantRecovery or Get-VBRAzureInstantRecovery cmdlet. | True | Named | True |
Id | Specifies the ID of the operation. | Guid[] | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRAzureInstantRecoverySession
Examples
Getting Session Logs for Instant Recovery to Microsoft Azure Operation
This example shows how to get session logs for the Instant Recovery to Microsoft Azure operation with the d1d2a50e-8052-498f-826b-e5c86f30ed5a ID.
$recovery = Get-VBRAzureInstantRecovery -Id "d1d2a50e-8052-498f-826b-e5c86f30ed5a" Get-VBRAzureInstantRecoverySession -InstantRecovery $recovery |
Related Commands