On this weblog submit I’ll present the right way to disable the automated creation of a web-based assembly in Outlook. The default habits is the next: When a person creates a gathering, then a web-based assembly is routinely created through Groups. This may be modified in Outlook by the person himself. But it surely will also be modified centrally. I’ll present this now.
Let’s say now we have a mailbox with the e-mail deal with f.bizeps@sid-500.com. This mailbox must be modified in order that no computerized on-line conferences are created, however “regular” Outlook conferences.
All we want is PowerShell.
Open PowerShell,ISE or VS Code.
Ensure the Trade On-line Administration Module is put in. If not, enter the road beneath and hit enter.
Set up-Module ExchangeOnlineManagement -Power -AllowClobber
Now, hook up with Trade On-line.
Subsequent, we disable the Person Mailbox setting “OnlineMeetingsByDefaultEnabled”.
Set-MailboxCalendarConfiguration -Identification f.bizeps@sid-500.com -OnlineMeetingsByDefaultEnabled $false
Lastly, after all, we evaluate what now we have completed.
Get-MailboxCalendarConfiguration -Identification f.bizeps@sid-500.com | Choose-Object *OnlineMeetings*
Superb!
Printed by