--- title: "Get-VBRCredentials" description: "Returns credentials records. Platform: VMware, Hyper-V Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns credentials records managed by Veeam Backup " canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrcredentials.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Credentials > Get-VBRCredentials" dateModified: "2026-08-19" --- # Get-VBRCredentials ## Short Description Returns credentials records. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns credentials records managed by Veeam Backup & Replication. You can get the list of all credentials records or look for instances directly by name. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Entity

Specifies an array of hosts. The cmdlet will return credentials of these hosts.

Object[]

False

Named

True (ByValue)

Name

Specifies an array of user names. The cmdlet will return credentials with these names.

String[]

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). ## Output Object The cmdlet returns the `CCredentials` object that contains user credentials. ## Examples ::: example ### Example 1. Getting Credentials Records by Name This command gets credentials records with the `Administrator` user name. ``` Get-VBRCredentials -Name *Administrator* ``` ::: ::: example ### Example 2. Getting Credentials Records by Host This command gets credentials records of a specific host. ``` $host = Get-VBRServer Get-VBRCredentials -Entity $host[1] ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Save the result to the `$host` variable. 2. Run the `Get-VBRCredentials` cmdlet. Set the `$host` variable as the `Entity` parameter value. Specify the necessary host of the `$host` variable. ::: ## Related Commands [`Get-VBRServer`](get-vbrserver.md)