Trouble shooting RDP Reducing the number of Remote Desktop Licensing Per-User CAL's
Below PowerShell, cmd to view the current TS license detail
Get-WmiObject Win32_TSLicenseKeyPack|Select KeyPackId, ProductVersion, TotalLicenses, TypeAndModel|Format-List
Below PowerShell, cmd to revoke the required no of TS license from the TS installed server.
Invoke-WmiMethod -Class Win32_TSLicenseKeyPack -Name RemoveLicensesWithIdCount -ArgumentList <KeyPackId>,<NumberOfCALsToRemove>
Get-WmiObject Win32_TSLicenseKeyPack|Select KeyPackId, ProductVersion, TotalLicenses, TypeAndModel|Format-List
Below PowerShell, cmd to revoke the required no of TS license from the TS installed server.
Invoke-WmiMethod -Class Win32_TSLicenseKeyPack -Name RemoveLicensesWithIdCount -ArgumentList <KeyPackId>,<NumberOfCALsToRemove>
Comments
Post a Comment