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):
Updated Feb 20, 2020
Version 2.0Jimmy Harper
Occasional Reader
Joined September 27, 2017
Core Infrastructure and Security Blog
Follow this blog board to get notified when there's new activity