Jason Rydstrand

System Center and Powershell

Browse by Tags

Related Posts
  • Blog Post: Daily SCOM Health Check with Powershell

    While working with an environment that was having issues with their Reporting Services, it was brought up that they had no insight into the Health Of SCOM. What it really turned into, was not having the data in email. So, I have created the following script that can be ran on a Management Server....
  • 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...