Avatar of zookeepa1
zookeepa1
 asked on

Powershell to Exchange Server 2013 Calendar Permissions

Hi All -

I need a Powershell to export/display Exchange Server 2013 Calendar Permissions...everything I see on out there displays a single mailbox.  I'd like for this to run recursively for all calendar's or email boxes in the domain.
ExchangeWindows Server 2012Powershell

Avatar of undefined
Last Comment
Mahesh Sharma

8/22/2022 - Mon
Ibrahim Benna

Hey,

try this script out. Copy the content below to a notepad and save it as a .PS1 script.

$allmailbox = Get-Mailbox -Resultsize Unlimited
foreach ($a in $allmailbox)
 {
get-mailboxfolderpermission -identity ($a.alias+':\Calendar') | FT identity,user,accessrights
}

Open in new window

ASKER CERTIFIED SOLUTION
Mahesh Sharma

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck