Sign up for Office 365
Learn more about Office 365
If you have customized role assignment policies in Live@edu Microsoft Exchange Online, you should document them prior to the upgrade, and then set them up again after the upgrade is complete.
Document role assignment policies settings prior to upgrade Re-create role assignment policies after upgrade
Document role assignment policies settings prior to upgrade
Re-create role assignment policies after upgrade
1. Export a list of users and the role assignment policies assigned to them by running Get-Mailbox –ResultSize unlimited | select UserPrincipalName, RoleAssignmentPolicy | export-csv [path to file] . Here's an example:
1. Export a list of users and the role assignment policies assigned to them by running Get-Mailbox –ResultSize unlimited | select UserPrincipalName, RoleAssignmentPolicy | export-csv [path to file] .
Here's an example:
Get-Mailbox -ResultSize unlimited | select UserPrincipalName, RoleAssignmentPolicy | export-csv "C:\Desktop\EduMailboxPlans.csv" 2. Save a file containing the end user roles assigned to a role assignment policy by running Get-RoleAssignmentPolicy [policy name] | select -ExpandProperty AssignedRoles > [path to file] Here are two examples:
Get-Mailbox -ResultSize unlimited | select UserPrincipalName, RoleAssignmentPolicy | export-csv "C:\Desktop\EduMailboxPlans.csv"
2. Save a file containing the end user roles assigned to a role assignment policy by running Get-RoleAssignmentPolicy [policy name] | select -ExpandProperty AssignedRoles > [path to file]
Here are two examples:
Get-RoleAssignmentPolicy "RoleAssignmentPolicy-DefaultMailboxPlan" | select -ExpandProperty AssignedRoles > "C:\Desktop\RoleAssignmentPolicy-DefaultMailboxPlan.txt"
Get-RoleAssignmentPolicy "RoleAssignmentPolicy-GalDisabledMailboxPlan" | select -ExpandProperty AssignedRoles > "C:\Desktop\RoleAssignmentPolicy-GalDisabledMailboxPlan.txt"
After the upgrade, role assignment policies can be re-created and assigned using Exchange Control Panel or Windows PowerShell in Exchange Online.