--- title: "Get-VBRKMSServer" description: "Returns KMS servers added to the Veeam Backup & Replication console. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns a Key Management System server" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrkmsserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Working with KMS Servers > Get-VBRKMSServer" dateModified: "2026-08-19" --- # Get-VBRKMSServer ## Short Description Returns KMS servers added to the Veeam Backup & Replication console. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns a Key Management System server (KMS server) added to the Veeam Backup & Replication console. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for KMS servers. The cmdlet will return KMS servers with these IDs.

Guid[]

True

Named

True (ByPropertyName, ByValue)

Name

Specifies an array of names for KMS servers. The cmdlet will return KMS servers with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

`` 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 [`VBRKMSServer`](vbrkmsserver.md) ## Examples ::: example ### Example 1. Getting KMS Server by ID This command returns the `8f723f68-82c6-430d-8915-58a0582440a4` and `8f723f68-82c6-430d-8915-58a0582440a4` KMS servers. ``` Get-VBRKMSServer -Id "8f723f68-82c6-430d-8915-58a0582440a4" , "8f723f68-82c6-430d-8915-58a0582440a4" ``` ::: ::: example ### Example 2. Getting KMS Server by Name This command returns the `thales.tech.local` KMS server. ``` Get-VBRKMSServer -Name "thales.tech.local" ``` :::