scloud by Florian Salzmann
ende

Turn off Microsoft Viva Briefing Email

The new Microsoft Viva Briefing email, just like the Insights mail a year before, is active by default and tenant-wide. These mails often raise questions and mistrust. Especially because personal information and mails are listed, the Briefing isn’t always well received. Fortunately, you can turn off the Viva Briefing email in several ways.

Prerequisites for the PowerShell method

To use the PowerShell option below, you need the ExchangeOnlineManagement module installed and an account with Exchange admin permissions in the tenant. The Admin Center toggle doesn’t require any module - just Global or Exchange Admin access.

How can I turn it off

The easiest way to turn off the mail is in the Microsoft 365 Admin Center under “Settings > Org settings > Briefing email from Microsoft Viva”:

Disabling Briefing email from Microsoft Viva in the Microsoft 365 Admin Center Org settings

Turn off via PowerShell for users and groups

Alternatively, you can also turn off the “Viva Briefing Email” via PowerShell. This way you can also turn off the Briefing email individually for single users or groups:

# Exchange Online Connect (as Admin)
Connect-ExchangeOnline

# Einzelner Benutzer / Singel User
Set-UserBriefingConfig -Identity florian@scloud.work -Enabled $false # $true um wieder einzuschalten


# Gruppenbasiert
$Group2tunrOFF = ".Alle Tester"
$Group2tunrOFF_members = Get-DistributionGroupMember -Identity $Group2tunrOFF | Get-Mailbox
foreach($mbx in $Group2tunrOFF_members){
  Set-UserBriefingConfig -Identity $mbx.UserPrincipalName -Enabled $false # $true um wieder einzuschalten
}

Remove the “Viva Insights” Outlook Add-in

After you’ve done the deactivation, it can happen that the Outlook Add-in is still active. You can turn this off easily and organization-wide in the Exchange Admin Center though.

Navigate to Organization Add-ins in the “Exchange Admin Center”. There you select “Viva Insights” and revoke its availability.

deactivate Viva Insight Outlook Add-in

Checking the current setting

If you’re not sure whether the Briefing email is already disabled for a user, query it directly instead of guessing:

Get-UserBriefingConfig -Identity florian@scloud.work

Keep in mind that disabling the mail doesn’t remove Viva Insights itself - users can still access their personal insights through the Viva Insights app or the Outlook add-in (if it’s still enabled) even after the Briefing email is turned off.

Related posts

SMTP with Exchange Online
Exchange Online

Exchange Online SMTP for printers and co.

Quickly enable SMTP with basic authentication for Exchange Online and use it for printers or your website.

Cleaning Up Microsoft Apps Cache on Demand with Intune
(Proactive) Remediations

Cleaning Up Microsoft Apps Cache on Demand with Intune

This guide demonstrates how to clear the Microsoft 365 Apps cache on demand with Intune, potentially resolving various app-related problems.

Handling the New Outlook with Intune
(Proactive) Remediations

Handling the New Outlook with Intune

Handle the new Outlook with Intune: Learn how to block, roll back, and deploy the new Outlook with Intune.