Hi guys, I'm creating a report gathering user's mailbox folder delegation i already have the following data:
Mailbox,DelagateUser,Foldername,AccessRights,
what I need as final report is this:
Mailbox,Alias(alias of mailbox),DelegateUser(alias of delegate user),City,Department,FolderName,AccessRights
I need this on a CSV.
Thanks guys for continuous help!!
Try to use command like this and let me know if you face any issue
Get-Mailbox | Get-MailboxPermission | Where { $.IsInherited -eq $False } | Select Alias,City,Department,Fold
Thanks
Manikandan