Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Azure and Microsoft 365 / Disable Welcome Message for Microsoft 365 Groups

March 17, 2024

Disable Welcome Message for Microsoft 365 Groups

When a new user is added to a Microsoft 365 universal group, they automatically receive a standard welcome e-mail message with the following subject:

You've joined the <M365_Group_Name> group
 Welcome to the M365_Group_Name
Use the group to share messages and files, and to coordinate group events.

 Group's Welcome Email/Message in Microsoft 365

If your tenant users are allowed to create new groups in Microsoft 365 (Teams, Outlook), a large number of such notifications in the mailbox can annoy your users.

You can use PowerShell to disable these welcome emails if you don’t want users in your Microsoft 365 group to receive them (there is no option to disable the welcome message in the Azure Portal or the Exchange Admin Center web interface).

Welcome messages in Microsoft 365 are automatically generated, and you can’t currently change their appearance, content, or settings.

Install the Exchange Online PowerShell module:

Install-Module -Name ExchangeOnlineManagement -Force -Scope AllUsers

Connect to your Microsoft 365 tenant with a Global Admin or Exchange Online Administrator account:

Connect-ExchangeOnline

Here’s how to check that the welcome message is enabled for the group:

Get-UnifiedGroup -Identity it_admins | select WelcomeMessageEnabled

Disable welcome email for new users in microsoft 365 group

Now, to disable it, run:

Get-UnifiedGroup it_admins | Set-UnifiedGroup -UnifiedGroupWelcomeMessageEnabled:$false

You can disable the welcome message for all Microsoft 365 groups in the tenant at once:

$M365Groups = Get-UnifiedGroup
foreach ($group in $M365Groups) {
Set-UnifiedGroup $group.Identity -UnifiedGroupWelcomeMessageEnabled:$false
}

Don’t forget to close the PowerShell session:

Disconnect-ExchangeOnline

1 comment
3
Facebook Twitter Google + Pinterest
Azure and Microsoft 365PowerShell
previous post
How to Install and Configure Ansible on Linux
next post
Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows

Related Reading

How to Block Sender Domain or Email Address...

March 17, 2024

PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

March 17, 2024

Automatic Outlook User Profile Configuration with ZeroConfigExchange

May 21, 2024

How to Manually Configure Exchange or Microsoft 365...

March 17, 2024

Configuring Password Policy in Microsoft Entra ID

March 17, 2024

How to Export MS Teams Chat History with...

March 12, 2024

Prevent Users from Creating New Groups in Microsoft...

March 17, 2024

Fix: “Something Went Wrong” Error When Installing Teams

March 13, 2024

1 comment

SysadminDave July 23, 2024 - 7:23 pm

Can you disable this for newly created groups on the tenant level as a default property?
I want to be able to create a dynamic group, with lots of people, and not have it shoot off messages to everybody upon creation.

Reply

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Outlook Keeps Asking for Password on Windows
  • Checking User Sign-in Logs in Entra ID (Microsoft 365)
  • How to Manually Configure Exchange or Microsoft 365 Account in Outlook 365/2019/2016
  • Search and Delete Emails from User Mailboxes on Exchange Server (Microsoft 365) with PowerShell
  • Configuring Password Policy in Microsoft Entra ID
  • Fix: Microsoft Outlook Search Not Working on Windows 10/11
  • Blank Sign-in Screen in Office 365 Apps (Outlook, Teams, etc.)
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top