--- title: "Get-VBRLicensedSocketWorkload" description: "This cmdlet returns the VBRLicensedSocketWorkload object that contains details on licensed hosts for the per-socket license that Veeam Backup & Replication applies to back up these hosts." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrlicensedsocketworkload.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Licenses > Get-VBRLicensedSocketWorkload" dateModified: "2026-08-19" --- # Get-VBRLicensedSocketWorkload ## Short Description Returns details on licensed hosts. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRLicensedSocketWorkload -License [] ``` ## Detailed Description This cmdlet returns the `VBRLicensedSocketWorkload` object that contains details on licensed hosts for the per-socket license that Veeam Backup & Replication applies to back up these hosts. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

License

Specifies a license. The cmdlet will return details on licensed hosts that Veeam Backup & Replication backs up using this license.

Accepts the VBRInstalledLicense object. To get this object, run the Get-VBRInstalledLicense cmdlet.

VBRInstalledLicense

True

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 [`VBRLicensedSocketWorkload`](vbrlicensedsocketworkload.md) ## Examples ::: example ### Getting Details on Licensed Hosts This example shows how to get details on licensed hosts for the per-socket license that Veeam Backup & Replication applies to back up these hosts. ``` $license = Get-VBRInstalledLicense Get-VBRLicensedSocketWorkload -License $license ``` Perform the following steps: 1. Run the [`Get-VBRInstalledLicense`](get-vbrinstalledlicense.md) cmdlet. Save the result to the `$license` variable. 2. Run the `Get-VBRLicensedSocketWorkload` cmdlet. Set the `$license` variable as the `License` parameter value. ::: ## Related Commands [`Get-VBRInstalledLicense`](get-vbrinstalledlicense.md)