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

Remove-VBRCredentials

In this article

    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>]

    Related Commands

    Get-VBRCredentials

    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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.

    Example 1

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

    PS C:\PS> 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.

    PS C:\PS> Remove-VBRCredentials -Credential $c