This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRCredentials

Short Description

Removes a credentials record from Veeam Backup & Replication.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Remove-VBRCredentials -Credential <CCredentials> [<CommonParameters>]

Detailed Description

This cmdlet permanently removes the selected credentials from the database.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Credential

Specifies the credentials you want to remove.

True

Named

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This command permanently removes the credentials record with name "Administrator". The credentials object is obtained with Get-VBRCredentials and piped down.

Get-VBRCredentials -Name “Administrator” | Remove-VBRCredentials

Example 2

This command removes the credentials record. The credentials object is obtained with Get-VBRCredentials and assigned to $c variable beforehand.

Remove-VBRCredentials -Credential $c

Related Commands

Get-VBRCredentials