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
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 Unlimitedforeach ($a in $allmailbox) {get-mailboxfolderpermission -identity ($a.alias+':\Calendar') | FT identity,user,accessrights}
try this script out. Copy the content below to a notepad and save it as a .PS1 script.
Open in new window