RDP – TERMINAL SERVICES License upgrade / de-grade
This post useful post one for de-grade the installed Terminal license in server.
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>