Forum Discussion
mitchpj75
Mar 23, 2020Copper Contributor
calendar missing in teams
I have setup Teams. I am the global admin for my company and access to all portals. All Team meeting policy options and scheduling options are set to yes for me at global level. In the desktop and...
- Apr 20, 2021
Let me sum up this thread for people just joining now. If the calendar app is missing from the left of Teams there are two possible reasons
1. (Most Likely) - Teams can not find or access your calendar. It will only access a calendar from the exchange mailbox associated with the users account, if you don't have one, then no calendar. Also if you use Exchange hosted on-premises you will need to have hybrid configured to allow Teams to access that mailbox. Read more starting at How Exchange and Microsoft Teams interact - Microsoft Teams | Microsoft Docs
2. (Less Likely) - Someone removed Calendar in an app setup policy assigned to that user. This will hide it from the left menu but it will still be there if you press the ... Menu at the bottom. See Manage app setup policies in Microsoft Teams - Microsoft Teams | Microsoft Docs
maitin10
Jun 29, 2020Copper Contributor
Check EWS of the mailbox.
Connect to exchange online powershell and run this command :
get-casmailbox -identity 'emailaddress' | fl *ews*
If its true , toggle it to false
set-casmailbox -identity 'emailaddress' -ewsenabled $false
wait for 30 minutes and then run
set-casmailbox -identity 'emailaddress' -ewsenabled $true
Hope this helps
Connect to exchange online powershell and run this command :
get-casmailbox -identity 'emailaddress' | fl *ews*
If its true , toggle it to false
set-casmailbox -identity 'emailaddress' -ewsenabled $false
wait for 30 minutes and then run
set-casmailbox -identity 'emailaddress' -ewsenabled $true
Hope this helps
ngoncalve72
May 21, 2021Copper Contributor
Thank You maitin10, that really help me out solving my situation.
Best Regards
Best Regards
- maitin10May 21, 2021Copper Contributor
ngoncalve72 I am glad the steps helped. 🙂