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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

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

Guid

True

Named

False

Name

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

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 [`VBOAzureBlobAccount`](vboazureblobaccount.md) object that contains storage account credentials for Microsoft Azure Blob Storage. ## Examples ::: example ### Example 1: Getting Microsoft Azure Blob Storage Credentials Record by Name This command returns the Microsoft Azure Blob Storage account credentials by the storage account credentials login name. ``` Get-VBOAzureBlobAccount -Name "Microsoft Azure Blob" ``` ::: ::: example ### Example 2: Getting Microsoft Azure Blob Storage Credentials Record by ID This command returns the Microsoft Azure Blob Storage account credentials by the storage account credentials ID. ``` Get-VBOAzureBlobAccount -Id 936edf7c-7cf3-4ddc-9895-c7485ef4bb2c ``` :::