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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies the array of IDs of the accounts. The cmdlet will return the accounts that match these IDs.

Guid[]

False

Named

False

Name

Specifies the array of names of the accounts. The cmdlet will return the accounts that match 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 [`VBRAzureAccount`](vbrazureaccount.md) ## Examples ::: example ### Example 1. Getting All Microsoft Azure Accounts This command returns all Microsoft Azure accounts added to Veeam Backup & Replication. ``` Get-VBRAzureAccount ``` ::: ::: example ### Example 2. Getting Microsoft Azure Account by Name This command returns the Microsoft Azure account named `RestoreToAzure@Veeam.com` added to Veeam Backup & Replication. ``` Get-VBRAzureAccount -Name RestoreToAzure@Veeam.com ``` :::