--- title: "Get-VBRAzureBlobAccount" description: "Returns Microsoft Azure Blob credentials records. Platform: VMware, Hyper-V Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns an array of credentials records f" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrazureblobaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Cloud Credentials > Microsoft Azure Accounts > Managing Microsoft Azure Accounts > Get-VBRAzureBlobAccount" dateModified: "2026-08-19" --- # Get-VBRAzureBlobAccount ## Short Description Returns Microsoft Azure Blob credentials records. **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns an array of credentials records for Microsoft Azure Blob storage added to Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for Microsoft Azure Blob credentials records. The cmdlet will return Microsoft Azure Blob credentials records with these IDs.

Guid[]

True

Named

False

Name

Specifies an array of login names for Microsoft Azure Blob credentials records. The cmdlet will return Microsoft Azure Blob credentials records with these logins.

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 The cmdlet returns the `VBRAzureBlobAccount` object that contains Microsoft Azure Blob credentials records. ## Examples ::: example ### Example 1. Getting Microsoft Azure Blob Credentials Records by Name This command gets a Microsoft Azure Blob credentials record by the credentials record login name. ``` Get-VBRAzureBlobAccount -Name "Azure Blob" ``` ::: ::: example ### Example 2. Getting Microsoft Azure Blob Credentials Records by ID This command gets a Microsoft Azure Blob credentials record by the credentials record ID. ``` Get-VBRAzureBlobAccount -Id "936edf7c-7cf3-4ddc-9895-c7485ef4bb2c" ``` :::