Požadovaná stránka nie je momentálne k dispozícii vo vašom jazyku. V dolnej časti stránky si môžete vybrať iný jazyk alebo si môžete okamžite preložiť ľubovoľnú webovú stránku do požadovaného jazyka pomocou vstavanej funkcie prekladu v prehliadači Google Chrome.

Filter Google Calendar email notifications

As an admin, you can use Calendar Interop to create an email filter rule to hide Google Calendar notifications that are necessary for syncing but don't provide information that your users need.

When a Calendar user invites a Microsoft Outlook user or another calendar user, Calendar sends an email. For recurring events, this can result in multiple emails, some of which your users don't need. Calendar makes it easy to identify these notifications. By using a filter rule, you can keep your users' inboxes uncluttered but their calendars seamlessly synced.

How the rule works

Calendar uses a specific email address (noreply-calendar-sync@google.com) for notifications that are necessary for syncing but include information that's irrelevant to your users. You can set up a rule that filters emails from this address to your users' trash, or to another folder of your choice.

How to set up the rule

Outlook system administrators can use Microsoft's Powershell to add a filter rule to all users. For details, go to the Microsoft support page. Alternatively, Outlook users can add their own inbox rules. For details, go to Manage Google Calendar invites in other calendar services.

The following sample Powershell script adds a rule that filters all user emails from noreply-calendar-sync@google.com to the trash folder:

$mailboxes = Get-Mailbox

$rule_name = 'Archive Google Calendar Notifications'

$from = 'noreply-calendar-sync@google.com'

foreach ($mailbox in $mailboxes) {

  if ( $mailbox.IsResource ) { continue }

  $existing_rules = Get-InboxRule -Mailbox $mailbox.UserPrincipalName

  $already_has_rule = $false

  foreach ($rule in $existing_rules) {

    if ($rule.Name -eq $rule_name) { $already_has_rule = $true }

  }

  if (!$already_has_rule) {

    New-InboxRule -Mailbox $mailbox.UserPrincipalName -Name $rule_name -MoveToFolder "$($mailbox.UserPrincipalName):\Archive" -From $from

  }

}


Google, Google Workspace, and related marks and logos are trademarks of Google LLC. All other company and product names are trademarks of the companies with which they are associated.

Was this helpful?

How can we improve it?
Search
Clear search
Close search
Main menu
12692754003353570721
true
Search Help Center
true
true
true
true
true
73010
false
false