--- title: "New-VBOAzureBlobObjectStorageSettings" description: "This cmdlet creates the VBOAzureBlobObjectStorageRepository object. This object contains settings of Azure Blob Storage." canonical: "https://helpcenter.veeam.com/docs/vbo365/powershell/new-vboazureblobobjectstoragesettings.html" breadcrumb: "PowerShell Reference > Veeam Backup for Microsoft 365 PowerShell Reference > Backup Infrastructure > JET-based Backup Repositories and Object Storage Repositories > New-VBOAzureBlobObjectStorageSettings" dateModified: "2026-08-21" --- # New-VBOAzureBlobObjectStorageSettings ## Short Description Defines the Azure Blob Storage settings. ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet creates the [`VBOAzureBlobObjectStorageRepository`](vboazureblobobjectstoragerepository.md) object. This object contains settings of Azure Blob Storage. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

ArchiverAppliance

Specifies the Azure archiver appliance.

The cmdlet will use this archiver appliance when transferring backed-up data between different instances of Azure Blob Storage or to Azure Blob Storage Archive during backup copy jobs.

Accepts the VBOAzureArchiverAppliance object.

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

VBOAzureArchiverAppliance

False

Named

False

Folder

Specifies an Azure Blob folder. Veeam Backup for Microsoft 365 will save backups or backup copies to the specified folder.

Accepts the VBOAzureBlobFolder object.

To get this object, run the Get-VBOAzureBlobFolder cmdlet.

VBOAzureBlobFolder

True

Named

False

Subscription

Specifies a subscription associated with a user account that will be used to access Azure Blob Storage.

Accepts the VBOAzureSubscription object.

To get this object, run the Get-VBOAzureSubscription cmdlet.

VBOAzureSubscription

True

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 [`VBOAzureBlobObjectStorageRepository`](vboazureblobobjectstoragerepository.md) object that contains settings of Azure Blob Storage. ## Examples ::: example ### Defining Azure Blob Storage Settings This example shows how to define settings for Azure Blob Storage. ``` $account = Get-VBOAzureBlobAccount -Id 133dae61-cfce-4fe0-8f8d-cbe52bd5612a $connection = New-VBOAzureBlobConnectionSettings -Account $account -RegionType Global $container = Get-VBOAzureBlobContainer -ConnectionSettings $connection -Name "ContainerName" $folder = Get-VBOAzureBlobFolder -Container $container -Name "FolderName" New-VBOAzureBlobObjectStorageSettings -Folder $folder ``` 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`](get-vboazureblobcontainer.md) cmdlet. Set the `$connection` variable as the `ConnectionSettings` parameter value. Specify the `Name` parameter value. Save the result to the `$container` variable. 4. Run the [`Get-VBOAzureBlobFolder`](get-vboazureblobfolder.md) cmdlet. Set the `$container` variable as the `Container` parameter value. Specify the `Name` parameter value. Save the result to the `$folder` variable. 5. Run the `New-VBOAzureBlobObjectStorageSettings` cmdlet. Set the `$folder` variable as the `Folder` parameter value. ::: ## Related Commands - [`Get-VBOAzureBlobAccount`](get-vboazureblobaccount.md) - [`New-VBOAzureBlobConnectionSettings`](new-vboazureblobconnectionsettings.md) - [`Get-VBOAzureBlobContainer`](get-vboazureblobcontainer.md) - [`Get-VBOAzureBlobFolder`](get-vboazureblobfolder.md) - [`Get-VBOAzureSubscription`](get-vboazuresubscription.md) - [`New-VBOAzureArchiverAppliance`](new-vboazurearchiverappliance.md)