--- title: "Get-VBREntraIDLogsBackup" description: "Returns backups of Microsoft Entra ID logs. Product Edition: Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns backups of Entra ID audit and sign-in logs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrentraidlogsbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Microsoft EntraID Support > Log Backups > Get-VBREntraIDLogsBackup" dateModified: "2026-08-19" --- # Get-VBREntraIDLogsBackup ## Short Description Returns backups of Microsoft Entra ID logs. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backups of Entra ID audit and sign-in logs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of the backup IDs. The cmdlet will return backups with these IDs.

Guid[]

True

Named

False

Name

Specifies an array of the backup job names. The cmdlet will return backups produced by these jobs.

String[]

True

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 [`VBREntraIDLogsBackup`](vbrentraidlogsbackup.md) objects that contain information about log backups. ## Examples ::: example ### Getting Entra ID Log Backup Job This example shows how to get the `Log Backup` backup job. ``` $logBackup = Get-VBREntraIDLogsBackup -Name "Log Backup" ``` :::