Exchange 2010 Role Based access Control?
Hi All,
I am testing Exchange 2010 role based access control.
I want to create a "Role Assignment Policy" under User Roles. which will allow users to update their information under "MyAddressInformation" But restricts user to edit or update their FAX Number (which is part of MyAddressInformation).
User can update or change any field Like street address and work telephone, But User should not be able to change or update their FAX Number.
Is there a way to accomplish this in Exchange 2010?
September 13th, 2010 4:55pm
“MyAddressInformation” is the built-in role that is read-only, please make a custom management role, a copy of the “MyAddressInformation”
role
Then, you can remove (By using Set-ManagementRoleEntry) the “Fax” and “OtherFax” parameter from that copy, and attach the
custom management role into the policyJames Luo
TechNet Subscriber Support (http://technet.microsoft.com/en-us/subscriptions/ms788697.aspx)
If you have any feedback on our support, please contact tngfb@microsoft.com
Free Windows Admin Tool Kit Click here and download it now
September 15th, 2010 5:36am
Thanks James....
Can You explain how can I accomplish this?
Could you please share the Exact powershell command to do this?
I being trying this but wasn't able to remove Fax parameter from it.
September 16th, 2010 11:20pm
Create a custom role based on Myaddressinformation
New-ManagementRole –Name Myaddress –parent Myaddressinformation
Delete the fax parameter
Set-ManagementRoleEntry “Myaddress\Set-user” –Parameters fax –RemoveParameter
Create a new policy
New-RoleAssignmentPolilcy –Name Policy1 –Roles mybaseoptions,myadderss,myPersonalInformation,myMobileinformation
Apply the policy to user
Set-mailbox “user” –RoleAssignmentPolicy policy1James Luo
TechNet Subscriber Support (http://technet.microsoft.com/en-us/subscriptions/ms788697.aspx)
If you have any feedback on our support, please contact tngfb@microsoft.com
Free Windows Admin Tool Kit Click here and download it now
September 17th, 2010 1:47am
Thanks James....
It is working for me....
Appreciate Your quick and great help...
September 17th, 2010 9:18am