How to fix Outlook web – user cannot select Add online meeting to all meetings
Outlook Options Grayed Out: Common Issues and Solutions
Outlook Add online meeting to all meetings option missing
1. Run PowerShell to confirm Teams is enabled for the User
You can use the following PowerShell to verify and force-enable Teams as the online meeting provider:
Connect-ExchangeOnline
Get-MailboxCalendarConfiguration -Identity nishant@ucadmin.info | Select-Object Identity, AddOnlineMeetingToAllMeetings
Set-MailboxCalendarConfiguration -Identity nishant@ucadmin.info -AddOnlineMeetingToAllMeetings $true
2. Confirm Teams is Enabled in Outlook Web Settings via PowerShell
Sometimes the Teams integration is not fully provisioned for OWA. You can check this with:
Get-CsOnlineUser -Identity nishant@ucadmin.info | Select-Object TeamsMeetingPolicy, OnlineMeetingEnabled
If OnlineMeetingEnabled is $false, that’s the root cause. You’ll need to reassign the Teams policy or wait for provisioning to complete.
3. Check for Conditional Access or App Permissions
If your org uses Conditional Access or App Permissions, it might be blocking Teams integration in OWA.
- Go to Azure AD > Conditional Access.
- Check if there are any policies applied to Microsoft Teams or Outlook Web App that restrict access or features.
4. Final Option: Reassign Teams Meeting Policy
Even if the user has the org-wide policy, try reassigning a custom Teams meeting policy with explicit permissions:
Grant-CsTeamsMeetingPolicy -Identity nishant@ucadmin.info -PolicyName "YourCustomPolicyName"
Then wait 15–30 minutes and test again.

