Forum Discussion
STHLM
Mar 26, 2022Copper Contributor
Exchange Online: Default Role Assignment Policy
Hello! I need a small help. I created the "MyBaseOptions-DisableForwarding" on the Default Role Assignment Policy. I would like to remove that change from the Default Role Assignment Policy ...
Titus_Mawasha
Mar 29, 2022Copper Contributor
Hi STHLM,
Run the following PowerShell CMD
The below will show you all roles for default role assignment and look for your role you created "MyBaseOptions-DisableForwarding" take a snipping tool of the results...
Get-ManagementRoleAssignment -RoleAssignee "Default Role Assignment Policy" | Format-Table Name,Role -Auto
And run the below CMD to remove the role
Remove-ManagementRoleAssignment -Identity "MyBaseOptions-DisableForwarding-Default Role Assignment Policy"
Then compare your snipping tool and results from after removing the role.
Then you are done!