Forum Discussion
MiSum83
Aug 14, 2023Brass Contributor
"Mailbox Import Export" role issue
Hello, I'll be doing emails migration soon and would need to import PST files. Would like to use the Import tool available in MS Purview.... However, to be able to use Import feature, I need to a...
- Aug 15, 2023Try adding the role via PowerShell:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -SecurityGroup "Organization Management"
Or, you can directly assign it to the user(s) in question:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -user admin1
VasilMichev
Aug 15, 2023MVP
Try adding the role via PowerShell:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -SecurityGroup "Organization Management"
Or, you can directly assign it to the user(s) in question:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -user admin1
New-ManagementRoleAssignment -Role "Mailbox Import Export" -SecurityGroup "Organization Management"
Or, you can directly assign it to the user(s) in question:
New-ManagementRoleAssignment -Role "Mailbox Import Export" -user admin1
MiSum83
Aug 15, 2023Brass Contributor
the powershell worked.
1stly - it reported an error mentioning that I'm not allowed to make changes in roles.... So I have removed the global admin account I was using, created new one again... After connecting via powershell, the command ran with no issues and the role has been assigned.
Thanks!
1stly - it reported an error mentioning that I'm not allowed to make changes in roles.... So I have removed the global admin account I was using, created new one again... After connecting via powershell, the command ran with no issues and the role has been assigned.
Thanks!