Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exchange 2019 Full Access to all mailboxes

Status
Not open for further replies.

DrB0b

IS-IT--Management
May 19, 2011
1,420
US
Hello all,
This should be an easy one but my Googly box searches are coming up with everything but 2019 and I think the procedure may have changed a tiny bit. Does anyone have any doc with Exchange 2019 and granting full access to a user to all other mailboxes? I need to have a certain user have full access to I can do an exchange message level backup with our backup program. Our particular backup provider doesnt "support" exchange 2019 until the end of the year and the new firmware comes out so they cannot officially help until then. Was hoping to get this lined out sooner than later. Hopefully you guys can find something out there that I am missing.

Thanks all!

Learning - A never ending quest for knowledge usually attained by being thrown in a situation and told to fix it NOW.
 
These steps were performed but doesn't seem to allow it to see all mailboxes: The odd thing is those steps did work on the first iteration of Server 2019 and 2019 Exchange but I think an update may have broken it. Hence the quest for official docs that say the correct procedure preferably from MS.

Learning - A never ending quest for knowledge usually attained by being thrown in a situation and told to fix it NOW.
 


Hope this helps you

To do that with PowerShell, use this cmdlet:

Get-RoleGroup "Organization Management" | select members

In case the given account is not a part of Organization Management group, the administrator needs to change that using this cmdlet:

Add-RoleGroupMember "Organization Management" -Member "<account name>"

<account name> should stand for the name of the desired user.

The next step is granting full access permissions to mailboxes:

Get-Mailbox -ResultSize unlimited -Filter {(RecipientTypeDetails -eq 'UserMailbox') -and (Alias -ne 'Admin')} | Add-MailboxPermission -User admin@example.com -AccessRights fullaccess -InheritanceType all -AutoMapping:$false

This will grant full access rights to all users for the account “admin@example.com”. The last parameter, “‑AutoMapping:$false” is not necessary, but is worth considering. It enables you to turn the Auto-mapping feature off. By default, if you do not include the parameter at all, it is set to $true. If it is not deactivated, admin’s Outlook will try to open all mailboxes in the company. This is rarely desirable and in case there are a lot of mailboxes, performance issues are to be expected. What is more, in many scenarios, users have experienced that removing Auto-mapping later on might prove to be problematic. Remember that if you do not include

Regards



Adrian G,
Hosted QuickBooks and 0ffice 365 Migration Expert
 
The Get-RoleGroup and Add-RoleGroupMember have been ran and ran successfully. I'm confused a little bit on the last larger query. Could you not just run the Add-MailboxPermission side by itself? Is the filtering needed at that point? Maybe I'm thinking about it incorrectly.

Learning - A never ending quest for knowledge usually attained by being thrown in a situation and told to fix it NOW.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top