--- title: "Get-VBRAzureInstantRecoverySession" 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." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazureinstantrecoverysession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant Recovery to Microsoft Azure > Recovery and Finalization > Get-VBRAzureInstantRecoverySession" dateModified: "2026-08-19" --- # Get-VBRAzureInstantRecoverySession ## Short Description Returns session logs for the Instant Recovery to Microsoft Azure operation. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRAzureInstantRecoverySession -InstantRecovery [-Id ] [] ``` ## 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

Id

Specifies the ID of the operation.

Guid[]

False

Named

False

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.

VBRAzureInstantRecovery

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRAzureInstantRecoverySession`](vbrazureinstantrecoverysession.md) ## Examples ::: example ### 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 [`Get-VBRAzureInstantRecovery`](get-vbrazureinstantrecovery.md)