--- title: "Get-VBOAzureBlobContainer" description: "This cmdlet returns an array of Microsoft Azure Blob containers." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/get-vboazureblobcontainer.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > Microsoft Azure Blob Storage Settings > Microsoft Azure Storage Containers and Folders > Get-VBOAzureBlobContainer" dateModified: "2026-08-21" --- # Get-VBOAzureBlobContainer ## Short Description Returns Microsoft Azure Blob containers. ## Syntax ``` Get-VBOAzureBlobContainer -ConnectionSettings [-Name ] [] ``` ## Detailed Description This cmdlet returns an array of Microsoft Azure Blob containers. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ConnectionSettings

Specifies an active session with Microsoft Azure Blob Storage. The cmdlet will return an array of the containers added to this object storage repository.

Accepts the VBOAzureBlobConnectionSettings object.

To create this object, run the New-VBOAzureBlobConnectionSettings cmdlet.

VBOAzureBlobConnectionSettings

True

Named

False

Name

Specifies a name of the Microsoft Azure Blob container that you want to get.

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 [`VBOAzureBlobContainer`](vboazureblobcontainer.md) object that returns an array of Microsoft Azure Blob containers. ## Examples ::: example ### Example 1: Getting All Microsoft Azure Blob Containers This example shows how to get all containers added to Microsoft Azure Blob Storage. ``` $account = Get-VBOAzureBlobAccount -Id 133dae61-cfce-4fe0-8f8d-cbe52bd5612a $connection = New-VBOAzureBlobConnectionSettings -Account $account -RegionType Global Get-VBOAzureBlobContainer -ConnectionSettings $connection ``` Perform the following steps: 1. Run the [`Get-VBOAzureBlobAccount`](get-vboazureblobaccount.md) cmdlet. Save the result to the `$account` variable. 2. Run the [`New-VBOAzureBlobConnectionSettings`](new-vboazureblobconnectionsettings.md) cmdlet. Set the `$account` variable as the `Account` parameter value. Specify the `RegionType` parameter value. Save the result to the `$connection` variable. 3. Run the `Get-VBOAzureBlobContainer` cmdlet. Set the `$connection` variable as the `ConnectionSettings` parameter value. ::: ::: example ### Example 2: Getting Specific Microsoft Azure Blob Container This example shows how to get the `Container 05` container added to Microsoft Azure Blob Storage. ``` $account = Get-VBOAzureBlobAccount -Id 133dae61-cfce-4fe0-8f8d-cbe52bd5612a $connection = New-VBOAzureBlobConnectionSettings -Account $account -RegionType Global Get-VBOAzureBlobContainer -ConnectionSettings $connection -Name "Container 05" ``` Perform the following steps: 1. Run the [`Get-VBOAzureBlobAccount`](get-vboazureblobaccount.md) cmdlet. Save the result to the `$account` variable. 2. Run the [`New-VBOAzureBlobConnectionSettings`](new-vboazureblobconnectionsettings.md) cmdlet. Set the `$account` variable as the `Account` parameter value. Specify the `RegionType` parameter value. Save the result to the `$connection` variable. 3. Run the `Get-VBOAzureBlobContainer` cmdlet. Set the `$connection` variable as the `ConnectionSettings` parameter value. Specify the `Name` parameter value. ::: ## Related Commands - [`Get-VBOAzureBlobAccount`](get-vboazureblobaccount.md) - [`New-VBOAzureBlobConnectionSettings`](new-vboazureblobconnectionsettings.md)