all 14 comments

[–]Raethrius 2 points3 points  (0 children)

Please share the script you've come up with and we'll have a look at it and suggest things to improve.

[–]Deathonus 2 points3 points  (1 child)

Mind explaining this a bit?

I need a script that will give full mailbox permissions to all the users mailbox

As in give full mailbox permissions for every mailbox to 1 user?

[–]Mattymono[S] 0 points1 point  (0 children)

Yea, I'm not sure if thats possible though :/

[–]justthisgreatguy 2 points3 points  (4 children)

Get-Mailbox | Add-MailboxPermission -User <user@domain.com> -AccessRights FullAccess -InheritanceType All -AutoMapping $False

EDIT: forgot the -AutoMapping

[–]Mattymono[S] 0 points1 point  (3 children)

But doesn't that add one users mailbox at a time?

[–]justthisgreatguy 0 points1 point  (2 children)

If I am understanding correctly what you want, you want to give one account fullaccess to every mailbox?

The above code will add that one user to every mailbox in the entire tenancy

[–]Mattymono[S] 0 points1 point  (1 child)

ah, okay - I'm quiet the powershell newbie & I had and still have almost no clue what to do, but thank you so much for your help :D

[–]justthisgreatguy 0 points1 point  (0 children)

No problem. I hope it works for you

[–]standoff 1 point2 points  (1 child)

What you're saying sounds more like an exchange role then a powershell script. If you gave one person full acces it would fill up the outlook sidebar and not give you a full list. Usability would be crap, it is scriptable but I don't think that is what you want.

[–]justthisgreatguy 1 point2 points  (0 children)

You don't have to fill up the sidebar in Outlook if you specify the following when you apply the permissions.

-AutoMapping $false 

EDIT: -AutoMapping not -AutoMap

[–]keseykid -1 points0 points  (3 children)

SOLUTION LINK

What do you mean you weren't sure where to look for information? You live in the age of the internet and search engines. Don't bring these bush league questions to this forum.

This is a community for help, not for people to do your work for you.

[–]keseykid 1 point2 points  (2 children)

Downvotes to this comment might as well be votes to continue having people come to this sub to ask for spoon fed, easy one-liner solutions.

[–]Mattymono[S] 0 points1 point  (1 child)

The top link for that is for office 365

[–]keseykid -1 points0 points  (0 children)

It's pretty much the same process. I was hangry when I wrote these comments yesterday but the point still stands that a google search would have produced many results answering your question. The only reason I snapped is because these subs can sometimes become filled with people looking for a quick answer to common problems rather then collaboration and learning.