Jump to content

Recommended Posts

Posted

Hello,

 

I am migrating from Office 365. I need to delegate an account to have full access rights to all mailboxes.

 

I am using this command:

 

Get-Mailbox -ResultSize unlimited -Filter {(RecipientTypeDetails -eq 'UserMailbox')} | Add-MailboxPermission -User [email protected] -AccessRights FullAccess -InheritanceType all

 

But I get this error kick up every now and then

 

The operation couldn't be performed because 'Name Here' matches multiple entries.

 

Does anyone have any tips on how I can adapt the command please?

 

Thanks

Posted

Try this...

 

Get-Mailbox -ResultSize unlimited -Filter {(RecipientTypeDetails -eq 'UserMailbox') -and (Alias -ne 'Admin')} | Add-MailboxPermission -User [email protected] -AccessRights fullaccess -InheritanceType All -AutoMapping $false 

Posted

Just create a user with Application Impersonation permissions and this should work.

 

Worked for me when doing a O365 to Google migration

Posted
Try this...

 

Get-Mailbox -ResultSize unlimited -Filter {(RecipientTypeDetails -eq 'UserMailbox') -and (Alias -ne 'Admin')} | Add-MailboxPermission -User [email protected] -AccessRights fullaccess -InheritanceType All -AutoMapping $false 

 

Thanks will try it out

 

Just create a user with Application Impersonation permissions and this should work.

 

Worked for me when doing a O365 to Google migration

 

Did you do an IMAP migration? I am not using the web interface but GSMME as it seems more reliable and quicker.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...