--- title: "Remove-VBRGoogleCloudComputeAccount" description: "This cmdlet removes Google Cloud service account credentials records." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbrgooglecloudcomputeaccount.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Data Recovery > Restore to Google Compute Engine > Remove-VBRGoogleCloudComputeAccount" dateModified: "2026-08-19" --- # Remove-VBRGoogleCloudComputeAccount ## Short Description Removes Google Cloud service account credentials records. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRGoogleCloudComputeAccount -Account [] ``` ## Detailed Description This cmdlet removes Google Cloud service account credentials records. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Account

Specifies a Google Cloud service account credentials record that you want to remove.

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

VBRGoogleCloudComputeAccount

True

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). ## Output Object [`VBRGoogleCloudComputeAccount`](vbrgooglecloudcomputeaccount.md) ## Examples ::: example ### Removing Google Cloud Service Account Credentials Record This example shows how to remove the `GCP service account 1` Google Cloud service account credentials record. ``` $account = Get-VBRGoogleCloudComputeAccount -Name "GCP service account 1" Remove-VBRGoogleCloudComputeAccount -Account $account ``` Perform the following steps: 1. Run the [`Get-VBRGoogleCloudComputeAccount`](get-vbrgooglecloudcomputeaccount.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$account` variable. 2. Run the `Remove-VBRGoogleCloudComputeAccount` cmdlet. Set the `$account` variable as the `Account` parameter. ::: ## Related Commands [`Get-VBRGoogleCloudAccount`](get-vbrgooglecloudaccount.md)