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

Get-VBRInstalledLicense

Short Description

Returns details about a license installed on a backup server.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Get-VBRInstalledLicense  [<CommonParameters>]

Detailed Description

This cmdlet returns details about a license installed on a backup server.

For more information on details of the license report, see the Viewing License Information section of User Guide for VMware vSphere.

Get-VBRInstalledLicense Important!

This cmdlet has been released in Veeam Backup & Replication 9.5 Update 4b and is not available in the previous versions of Veeam Backup & Replication.

<CommonParameters>

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

Return Object

The cmdlet returns the VBRInstalledLicense object that contains details on installed license.

Example 1

This command returns details about a license installed on a backup server.

Get-VBRInstalledLicense

Example 2

This example shows how to get details about a number of licensed CPU sockets on protected Microsoft Hyper-V hosts and VMware ESXi hosts.

  1. Run the Get-VBRInstalledLicense cmdlet. Save the result to the $license variable.
  2. Get the SocketLicenseSummary property of the $license variable.

$license = Get-VBRInstalledLicense

$license.SocketLicenseSummary

LicensedSocketsNumber UsedSocketsNumber RemainingSocketsNumber     Type

--------------------- ----------------- ----------------------     ----

                   3                 2                     15   HyperV

                   2                 1                     20  vSphere

Example 3

This example shows how to get details about a number of available instances.

  1. Run the Get-VBRInstalledLicense cmdlet. Save the result to the $license variable.
  2. Get the InstanceLicenseSummary property of the $license variable.

$license =  Get-VBRInstalledLicense

$license.InstanceLicenseSummary

LicensedInstancesNumber : 1000

UsedInstancesNumber     : 0

NewInstancesNumber      : 0

RentalInstancesNumber   : 0

Object                  : {}

I want to report a typo

There is a misspelling right here:

 

I want to let the Veeam Documentation Team know about that.