--- title: "Get-VBOAzureServiceAccount" description: "This cmdlet returns an array of Microsoft Azure service accounts added to Veeam Backup for Microsoft 365." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboazureserviceaccount.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Microsoft Azure Blob Storage Settings > Microsoft Azure Service Accounts > Get-VBOAzureServiceAccount" dateModified: "2026-09-01" --- # Get-VBOAzureServiceAccount ## Short Description Returns Microsoft Azure service account details. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of Microsoft Azure service accounts added to Veeam Backup for Microsoft 365. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies a description of Microsoft Azure service account.

Note: To filter objects, you can use * and ? wildcard characters.

String

False

Named

False

Id

Specifies an array of IDs for Microsoft Azure service accounts. The cmdlet will return details of Microsoft Azure service accounts with these IDs.

Guid

True

Named

False

Name

Specifies an array of Microsoft Entra application names. The cmdlet will return details of Microsoft Azure service accounts associated with the specified Microsoft Entra applications.

String

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the [About Common Parameters](http://go.microsoft.com/fwlink/p/?LinkID=113216) section of Microsoft Learn. ## Output Object The cmdlet returns the [`VBOAzureServiceAccount`](vboazureserviceaccount.md) object that contains Microsoft Azure service account details. ## Examples ::: example ### Example 1: Getting Microsoft Azure Service Account by Microsoft Entra Application Name This command returns the Microsoft Azure service account details by the name of the associated Microsoft Entra application. ``` Get-VBOAzureServiceAccount -Name "Archiver Appliance App" ``` ::: ::: example ### Example 2: Getting Microsoft Azure Service Account by ID This command returns the Microsoft Azure service account details by the service account ID. ``` Get-VBOAzureServiceAccount -Id f8e5ac3d-d883-4dd8-8de3-a8f315fb6ae2 ``` :::