Add a description to an RBAC roleentry
I created a new ManagementRole so that managers of distrubution groups could add/remove users but not create or remove groups from the GAL. New-ManagementRole -Name OwnerDistributionGroups -Parent MyDistributionGroups Remove-ManagementRoleEntry OwnerDistributionGroups\New-DistributionGroup -Confirm:$false Remove-ManagementRoleEntry OwnerDistributionGroups\Remove-DistributionGroup -Confirm:$false It works great. My question is. How can I add a description to the entry so when I'm in the ECP I can see this was a custom entry? Thanks
November 16th, 2010 1:47pm

There is a -description parameter in the New-ManagementRole cmdlet although there is no Set-ManagementRole cmdlet which one would assume changing that parameter would be. You could try using ADSI to edit it manually or just go with the delete and re-create option. Or maybe try $Role = Get-ManagementRole OwnerDistributionGroups $Role.description="Description Here";$Role.SetInfo()DJ Grijalva | MCITP: EMA 2007/2010 | www.persistentcerebro.com
Free Windows Admin Tool Kit Click here and download it now
November 16th, 2010 2:14pm

For simplicity , I just re-created it. Thanks.
November 16th, 2010 3:15pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics