The following example uses on-premise licensing through Kemp 360 Central and requests a specific license (the LicenseTypeId is used):

get = Get-AslLicenseType -aslhost 10.35.48.10 -LoadBalancer 10.35.48.9
 
$get.Data.AvailableLicenses
 
id name         description  available
-- ----         -----------  ---------
2  VLM-100      VLM-100              1
9  VLM-200      VLM-200              1
16 VLM-500      VLM-500              1
23 VLM-1000     VLM-1000             1
30 VLM-3000     VLM-3000             1
37 VLM-5000     VLM-5000             1
44 VLM-Uncapped VLM-Uncapped         1

If you wanted to license a LoadMaster with the VLM-Uncapped license listed above, you would set the LicenseTypeId to 44, for example:

 
Request-LicenseOnPremise -aslhost 10.35.48.10 -LicenseTypeId 44 -LoadBalancer 10.35.48.9

You must specify the aslhost (Kemp 360 Central IP address) and LoadBalancer (LoadMaster IP address) values.