--- title: "Get-VBRAzureADAccount" description: "This cmdlet returns Azure Entra ID-based storage accounts added to Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazureadaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Cloud Credentials > Microsoft Azure Accounts > Managing Azure Entra ID Account > Get-VBRAzureADAccount" dateModified: "2026-08-19" --- # Get-VBRAzureADAccount ## Short Description Returns Azure Entra ID-based storage accounts. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns Azure Entra ID-based storage accounts added to Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for Azure Entra ID-based storage accounts. The cmdlet will return storage accounts with these ID.

Guid[]

True

Named

False

Name

Specifies an array of friendly names for storage accounts. The cmdlet will return storage accounts with these names.

Note: The friendly names match the names of the storage accounts.

String[]

False

Named

False

StorageAccountName

Specifies an array of names for Azure Entra ID storage account. The cmdlet will return Microsoft Entra ID user accounts with these names.

String[]

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 [`VBRAzureADAccount`](vbrazureadaccount.md) ## Examples ::: example ### Example 1. Getting Azure Entra ID-Based Storage Accounts by ID This command returns Azure Entra ID-based storage accounts with the following IDs: `cfe6a67f-f322-446d-92e3-cf1da7cbf192` and `1242a067-8292-406b-8035-8b0aefb187bf`. ``` Get-VBRAzureADAccount -Id Guid "cfe6a67f-f322-446d-92e3-cf1da7cbf192", "1242a067-8292-406b-8035-8b0aefb187bf" ``` ::: ::: example ### Example 2. Getting Azure Entra ID-Based Storage Accounts by Names This command returns Azure Entra ID-based storage accounts with the `Azure` `Entra ID Admin` name. ``` Get-VBRAzureADAccount -Name "Azure Entra ID Admin" ``` :::