OnlineMeetingsByDefaultEnabled

Glenn Maxwell 10,146 Reputation points
2021-09-17T11:16:31.397+00:00

Hi All

I dont want to make Teams meeting by default in outlook.

Below is my current configuration:

Get-OrganizationConfig | fl
OnlineMeetingsByDefaultEnabled :

Will the below syntax work to make it disabled for the complete organization

Set-OrganizationConfig -OnlineMeetingsByDefaultEnabled $false  

if i need to make for one users outlook, is the below syntax correct.

Set-MailboxCalendarConfiguration -Identity user1@contoso.com –OnlineMeetingsByDefaultEnabled $false  

if i need to make for multiple users.

i have csv file in the below format
users
user2@Company portal .com
user3@Company portal .com

$UserList = import-csv C:\temp\users.csv   
ForEach ($User in $UserList)  
{  
Set-MailboxCalendarConfiguration -Identity $user.Users –OnlineMeetingsByDefaultEnabled $false  
 }  
Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,130 questions
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
9,701 questions
Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,195 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,359 questions
{count} votes

2 additional answers

Sort by: Most helpful
  1. Andy David - MVP 142.3K Reputation points MVP
    2021-09-17T11:22:31.36+00:00

    The org setting is correct, however
    To set in bulk:

    $UserList = import-csv C:\temp\users.csv
    $UserList | % {Set-MailboxCalendarConfiguration -Identity $_.Users –OnlineMeetingsByDefaultEnabled $True}

    1 person found this answer helpful.
    0 comments No comments

  2. Glenn Maxwell 10,146 Reputation points
    2021-09-17T12:33:23.427+00:00

    Thanks alot

    how do i check the status, is the below syntax correct

    Get-OrganizationConfig | Select -OnlineMeetingsByDefaultEnabled

    0 comments No comments