
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.
|
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.
- Run the Get-VBRInstalledLicense cmdlet. Save the result to the $license variable.
- 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.
- Run the Get-VBRInstalledLicense cmdlet. Save the result to the $license variable.
- Get the InstanceLicenseSummary property of the $license variable.
$license = Get-VBRInstalledLicense $license.InstanceLicenseSummary LicensedInstancesNumber : 1000 UsedInstancesNumber : 0 NewInstancesNumber : 0 RentalInstancesNumber : 0 Object : {} |