Tag: RBAC
-
Securing Multi-Agent AI with Entra ID On-Behalf-Of: Per-User RBAC in LangGraph.

This is the first of two posts. This one focuses on the technical aspects; the next will address the CXOs perspective, providing a comprehensive unified point of view. Introduction When building AI-powered applications for the enterprise, a common challenge emerges: how do you maintain user identity and access controls when an AI agent queries backend…
-
How to Customize Exchange 2010 RBAC Roles for Delegating User/Contact Management Part 2.
As a follow up to the last post, I decided to further restrict the Support Staff users’ access to the available Custom ‘Address Book Management’ Role cmdlets. The following commands enabled me accomplish this objective: 1) C:\>Get-ManagementRoleEntry -Identity “Address Book Management\*” | ?{$_.Name -ne “Get-User”} | Remove-ManagementRoleEntry ( This command removes all available cmdlets from…
-
How to Customize Exchange 2010 RBAC Roles for Delegating User/Contact Management Part 1.
I recently received a request for specific users to be able to modify users and contact information for the HR department. I immediately thought of Exchange Role Based Access Control. Personally, I think this is one of the best features of Microsoft Exchange 2010, but that’s another story. In short, RBAC ensures that end-users only…