Please give the option to hide bookings calendars from the GAL. Multiple options are needed: >hide during creation by users. >hide by admins individually or in bulk. >default org wide policy to...
__Pavlo__
Aug 28, 2022Copper Contributor
You can hide calendars from GAL by Powershell 7 commands:
- Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
- Install-Module -Name Az -Scope CurrentUser -Repository PSGallery -Force
- Connect-AzAccount
- Connect-ExchangeOnline -UserPrincipalName email address removed for privacy reasons
- Set-Mailbox -Identity email address removed for privacy reasons -HiddenFromAddressListsEnabled $true
- Disconnect-ExchangeOnline