--- title: "Remove-VBRAzureBlobAccount" description: "This cmdlet removes Microsoft Azure Blob credentials records from Veeam Backup & Replication. You will not be able to connect to Microsoft Azure Blob storage after removing credentials records." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrazureblobaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Cloud Credentials > Microsoft Azure Accounts > Managing Microsoft Azure Accounts > Remove-VBRAzureBlobAccount" dateModified: "2026-08-19" --- # Remove-VBRAzureBlobAccount ## Short Description Removes Microsoft Azure Blob credentials records. **Platform**: VMware, Hyper-V **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRAzureBlobAccount -Account [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes Microsoft Azure Blob credentials records from Veeam Backup & Replication. You will not be able to connect to Microsoft Azure Blob storage after removing credentials records. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Account

Specifies Microsoft Azure Blob credentials records that you want to remove.

Accepts the VBRAzureBlobAccount object. To get this object, run the Get-VBRAzureBlobAccount cmdlet.

VBRAzureBlobAccount

True

Named

True (ByValue)

Confirm

Defines whether the cmdlet displays a prompt that asks if the user is sure that they want to continue.

Note: Microsoft PowerShell enables the Confirm parameter for this cmdlet by default. To disable this option, set the parameter value to $false. That is, Confirm:$false.

SwitchParameter

False

Named

False

WhatIf

Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

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). ## Examples ::: example ### Removing Microsoft Azure Blob Credentials Record This example shows how to remove the credentials record for Microsoft Azure Blob storage. ``` $account = Get-VBRAzureBlobAccount -Name "Azure Blob" Remove-VBRAzureBlobAccount -Account $account ``` Perform the following steps: 1. Run the [`Get-VBRAzureBlobAccount`](get-vbrazureblobaccount.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$account` variable. 2. Run the `Remove-VBRAzureBlobAccount` cmdlet. Set the `$account` variable as the `Account` parameter value. ::: ## Related Commands [`Get-VBRAzureBlobAccount`](get-vbrazureblobaccount.md)