--- title: "Remove-VBRGoogleCloudAccount" description: "This cmdlet removes Google Cloud credentials records from Veeam Backup & Replication." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrgooglecloudaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Cloud Credentials > Google Cloud Accounts > Managing Google Cloud Accounts > Remove-VBRGoogleCloudAccount" dateModified: "2026-08-19" --- # Remove-VBRGoogleCloudAccount ## Short Description Removes Google Cloud credentials records from Veeam Backup & Replication. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRGoogleCloudAccount -Account [-WhatIf] [-Confirm] [] ``` ## Detailed Description This cmdlet removes Google Cloud credentials records from Veeam Backup & Replication. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Account

Specifies Google Cloud credentials records that you want to remove.

Accepts the VBRGoogleCloudAccount object. To create this object, run the Add-VBRGoogleCloudAccount cmdlet.

VBRGoogleCloudAccount

True

Named

True (ByPropertyName, 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 Google Cloud Credentials Record This example shows how to remove a Google Cloud credentials record. ``` $creds = Get-VBRGoogleCloudAccount -AccessKey "ABCDEFGHIGKLMNOP" Remove-VBRGoogleCloudAccount -Account $creds ``` Perform the following steps: 1. Run the [`Get-VBRGoogleCloudAccount`](get-vbrgooglecloudaccount.md) cmdlet. Specify the `AccessKey` parameter value. Save the result to the `$creds` variable. 2. Run the `Remove-VBRGoogleCloudAccount` cmdlet. Set the `$creds` variable as the `Account` parameter value. ::: ## Related Commands [`Get-VBRGoogleCloudAccount`](get-vbrgooglecloudaccount.md)