Forum Discussion
Disable Email Notifications when adding +Add User to Power Bi App
- Anonymous1 year ago
Hi jplarios ,
This can typically be done using PowerShell commands if you’re using Microsoft 365 or similar services. Here’s a general approach:
Connect to your Office 365 Admin using PowerShell:
Open PowerShell and run the following command to connect:Connect-ExchangeOnline -UserPrincipalName <your admin email>Check the current setting:
Run this command to see if the welcome message is enabled:Get-UnifiedGroup -Identity "<group name>" | fl WelcomeMessageEnabledDisable the welcome message:
If it’s set to True, you can disable it by running:Set-UnifiedGroup -Identity "<group name>" -UnifiedGroupWelcomeMessageEnabled:$falseConnect to Exchange Online PowerShell | Microsoft Learn
Hope it helps!
Best regards,
Community Support Team_ Scott ChangIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi jplarios ,
This can typically be done using PowerShell commands if you’re using Microsoft 365 or similar services. Here’s a general approach:
Connect to your Office 365 Admin using PowerShell:
Open PowerShell and run the following command to connect:
Connect-ExchangeOnline -UserPrincipalName <your admin email>
Check the current setting:
Run this command to see if the welcome message is enabled:
Get-UnifiedGroup -Identity "<group name>" | fl WelcomeMessageEnabled
Disable the welcome message:
If it’s set to True, you can disable it by running:
Set-UnifiedGroup -Identity "<group name>" -UnifiedGroupWelcomeMessageEnabled:$false
Connect to Exchange Online PowerShell | Microsoft Learn
Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Thank you!