Get a list of email addresses used in SCOM notifications

This post has been republished via RSS; it originally appeared at: Core Infrastructure and Security Blog articles.

First published on TECHNET on Dec 12, 2013

I haven’t blogged in a while, so need to make sure this thing is still on :)  I’ll start with something simple that I used today.  One of my customers is migrating from SCOM 2007 to SCOM 2012 and needs to get a list of all email addresses that are used in Notifications (so he can email them to let them know about the upcoming migration).

Before writing something I did a quick TechNet search and found what I was looking for here .

Here are PowerShell commands that can be used for this in SCOM 2007 and SCOM 2012:

SCOM 2007:

Get-NotificationRecipient | foreach-object {$_.devices | where {$_.protocol -eq "smtp"}} | select name,address

SCOM 2012:

Get-SCOMNotificationSubscriber | foreach-object {$_.devices | where {$_.protocol -eq "smtp"}} | select name,address

Output (if you just want the address list, then just remove “name” from the select list):

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.