Mar 19 2021 12:24 PM
Hello everyone
In our company we have multiple mailboxes that we use to communicate with our customers. These mailboxes are user mailboxes, not shared mailboxes. As example we have:
Logically, these mailboxes have their own calendar and address books. The problem now is that no one needs these calendars and address books, and they mess up the user's outlook desktop app. Is there any way to disable or hide the calendars and address books of these mailboxes?
I already tried it with a new mailboxpolicy via exchange shell. With the parameter "-CalendarEnabled $false" but they persist.
Thanks for every help or idea.
Mar 20 2021 06:21 AM
SolutionHi @preuley30 ,
Please try the below commands which will help you to resolve your issues.
This command will hide your mailbox from the address book
Set-Mailbox -Identity "support@" -HiddenFromAddressListsEnabled $true
Get the list of users who are having permission on the calendar
Get-MailboxFolderPermission -Identity support@:\Calendar
Set Default User Access Rights to NONE
Set-MailboxFolderPermission -Identity support@:\Calendar -User Default -AccessRights {None}
if you want to revoke the calendar permission from a specific user then run the below command.
Set-MailboxFolderPermission -Identity support@:\Calendar -User username -AccessRights {None}
If your mailbox is not delegated to anyone then you can disable mailbox permission as well
Remove-MailboxPermission -Identity "support@" -AccessRights FullAccess -confirm:$False
I hope this is informative.
Thank you,
Regards,
MD
Mar 20 2021 09:37 AM
Mar 21 2021 12:43 PM