--- title: "Get-VBREntraIDTenantRestoreSession" description: "This cmdlet returns restore sessions started to recover Entra ID tenant backups. If you do not provide any parameters, the cmdlet returns all restore sessions." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrentraidtenantrestoresession.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Item Data Recovery > Get-VBREntraIDTenantRestoreSession" dateModified: "2026-08-19" --- # Get-VBREntraIDTenantRestoreSession ## Short Description Returns restore sessions started to recover Microsoft Entra ID tenant backups. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBREntraIDTenantRestoreSession [-Id ] [] ``` ## Detailed Description This cmdlet returns restore sessions started to recover Entra ID tenant backups. If you do not provide any parameters, the cmdlet returns all restore sessions. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of restore session IDs. The cmdlet will return restore sessions with these IDs.

Guid[]

False

Named

False

`` 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 array of [`VBREntraIDTenantRestoreSession`](vbrentraidtenantrestoresession.md) objects that contain settings of restore sessions started to recover Entra ID tenant backups. ## Examples ::: example ### Getting Entra ID Tenant Restore Session by ID This example shows how to get a tenant restore session by its ID. ``` $backup = Get-VBREntraIDTenantBackup -Name "Tenant backup" $tenantRestoreSession = Start-VBREntraIDTenantRestore -Backup $backup ... $session = Get-VBREntraIDTenantRestoreSession -Id $tenantRestoreSession.Id ``` Perform the following steps: 1. Run the [`Get-VBREntraIDTenantBackup`](get-vbrentraidtenantbackup.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$backup` variable. 2. Run the [`Start-VBREntraIDTenantRestore`](start-vbrentraidtenantrestore.md) cmdlet. Set the `$backup` variable as the `Backup` parameter value. Save the result to the `$tenantRestoreSession` variable. 3. Run the `Get-VBREntraIDTenantRestoreSession` cmdlet. Set the `$tenantRestoreSession.Id` variable as the `Id` parameter value. Save the result to the `$session` variable. ::: ## Related Commands - [`Get-VBREntraIDTenantBackup`](get-vbrentraidtenantbackup.md) - [`Start-VBREntraIDTenantRestore`](start-vbrentraidtenantrestore.md)