Windows OS Hub
  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu
  • Home
  • About

Windows OS Hub

  • Windows Server
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
    • Windows Server 2012 R2
    • Windows Server 2008 R2
    • SCCM
  • Active Directory
    • Active Directory Domain Services (AD DS)
    • Group Policies
  • Windows Clients
    • Windows 11
    • Windows 10
    • Windows 8
    • Windows 7
    • Windows XP
    • MS Office
    • Outlook
  • Virtualization
    • VMWare
    • Hyper-V
    • KVM
  • PowerShell
  • Exchange
  • Cloud
    • Azure
    • Microsoft 365
    • Office 365
  • Linux
    • CentOS
    • RHEL
    • Ubuntu

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

August 28, 2023 AzureMicrosoft 365PowerShell

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 really 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 in 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

0 comment
2
Facebook Twitter Google + Pinterest
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 Connect VPN Before Windows Logon

November 14, 2023

Removing Azure Arc Setup Feature on Windows Server...

November 9, 2023

Send Emails with Microsoft Graph API and PowerShell

November 6, 2023

Zabbix: How to Get Data from PowerShell Scripts

October 27, 2023

Tracking Printer Usage with Windows Event Viewer Logs

October 19, 2023

Leave a Comment Cancel Reply

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMWare
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • How to Connect VPN Before Windows Logon

    November 14, 2023
  • Removing Azure Arc Setup Feature on Windows Server 2022

    November 9, 2023
  • Using WPAD (Web Proxy Auto-Discovery Protocol) on Windows

    November 7, 2023
  • Send Emails with Microsoft Graph API and PowerShell

    November 6, 2023
  • Zabbix: How to Get Data from PowerShell Scripts

    October 27, 2023
  • Tracking Printer Usage with Windows Event Viewer Logs

    October 19, 2023
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)

    October 15, 2023
  • Reset Root Password in VMware ESXi

    October 12, 2023
  • How to Query and Change Teams User Presence Status with PowerShell

    October 8, 2023
  • How to Increase Size of Disk Partition in Ubuntu

    October 5, 2023

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Checking User Sign-in Logs in Azure AD (Microsoft 365)
  • How to Reset User Password in Azure Active Directory (Microsoft 365)
  • Enable or Disable MFA for Users in Azure/Microsoft 365
  • Configuring Azure AD Password Policy
  • Send Emails with Microsoft Graph API and PowerShell
  • How to Restore Deleted Users in Azure AD (Microsoft 365)
  • PowerShell: Configure Certificate-Based Authentication for Exchange Online (Azure)
Footer Logo

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


Back To Top