"Terminal Services license server group" is not added to user accounts in Windows 2003 domain
the terminal services license server cannot update license attributes user "xxx" in active directory domain "mydomain.intern". ensure computer account license server member of terminal server license servers group in active directory domain "dirnat.intern".
if license server installed on domain controller, network service account needs member of terminal server license servers group.
if license server installed on domain controller, after have added appropriate accounts terminal server license servers group, must restart terminal services licensing service track or report usage of ts per user cals.
update2:
thanks powershell succeeded in finding pattern. following script lists users "terminal server license servers" have access rights:
$users = get-user | get-adpermission -user s-1-5-32-561
write-host $users.count
$count = 0
while ($count -lt $users.count)
{
write-host $count $users[$count].identity
$count++
}
the users listed had following in common; either:
a) created after upgraded domain windows 2000 windows 2003 (sp1)
or
b) mebers of domain admins, account operators or printer operators.
we know new accounts receive corretct access right upon creation , admins/operators accounts automatically have access rights adjusted automatically active directory mechanisms (just try adding user account operators , notice account operators access rights user account disappear after while itself).
in other words - these permissions have never been applied user accounts in domain. cannot imagine design, if there lot of ms customers scratching heads. suppose our domain exepction. guess i'll apply neccessary access rights settings powershell.
Windows Server > Remote Desktop Services (Terminal Services)
Comments
Post a Comment