Jason Rydstrand

System Center and Powershell

Browse by Tags

Related Posts
  • Blog Post: Notification Groups - How to list members with powershell

    It was asked of me today: How can I get the groups and group members that are in a Notification Group? After a bit of pondering, this is what I came up with. $Notifications = get-notificationsubscription | ? {$_.DisplayName -match "Sharepoint Notifications"} $Groups = Get-MonitoringObjectGroup...