--- title: "Get-VBRInstantRecovery" description: "Returns running Instant Recovery sessions. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns Instant Recovery (including Instant Recovery for first class disks, file shares and so on) sessions running" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrinstantrecovery.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Instant Recovery > Get-VBRInstantRecovery" dateModified: "2026-08-19" --- # Get-VBRInstantRecovery ## Short Description Returns running Instant Recovery sessions. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRInstantRecovery [-Id ] [-Full] [] ``` ## Detailed Description This cmdlet returns Instant Recovery (including Instant Recovery for first class disks, file shares and so on) sessions running at the moment. If you do not specify cmdlet parameters, the cmdlet will return all running Instant Recovery sessions. You can get the information about the Instant Recovery sessions in short or detailed view. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Full

Specifies the information on sessions and history returned in detailed view.

SwitchParameter

False

Named

False

Id

Specifies IDs of Instant Recovery sessions that you want to return.

Tip: You can find the session ID in an object returned by the cmdlet that launched the Instant Recovery session.

Guid[]

False

Named

True (ByPropertyName)

`` 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 The cmdlet returns the `InstantRecovery[]` object that defines settings of Instant Recovery sessions. ## Examples ::: example ### Example 1. Getting All Instant Recovery Sessions in Short View This command gets the list of the instant recovery sessions in short view. ``` Get-VBRInstantRecovery ``` ::: ::: example ### Example 2. Getting All Instant Recovery Sessions in Detailed View This command gets the list of the instant recovery sessions in detailed view. ``` Get-VBRInstantRecovery -Full ``` :::