Removing Root Role Assignments In Azure Using PowerShell

Removing Root Role Assignments In Azure Using PowerShell

Here’s today’s scenario: You are managing your role-based access control (RBAC) roles in the Azure Portal and start getting the following error message: “Role assignments created at root scope must be removed by using the command line.” Now what?

The solution can be easily accomplished by using Cloud Shell. Use PowerShell mode, and we will use the Remove-AZRoleAssignment cmdlet. The syntax of the cmdlet is listed below. Just replace the username and the role definition name to match your requirement.

Remove-AZRoleAssignment -SignInName <user@company.ca> -RoleDefinitionName "User Access Administrator" -Scope "/"

Nice and easy!


To view or add a comment, sign in

Insights from the community

Others also viewed

Explore topics