A simple script to return a list of overrides against a group in SCOM.
# MUGetSCOMGroupOverrides.ps1
# Script to retrieve overrides for a specific group
# Scripy by Darren Joyce
# Last updated 16/7/15
param($name)
if (!$name){
$name = read-host 'What is the name of the group?'
}
$groupid = (Get-SCOMGroup $name).Id
Get-SCOMOverride | where {$_.ContextInstance -eq $groupid}
Just a infrequently updated blog to keep Azure, SCOM, OMS, SquaredUp and other random bits that may be handy to someone. Mainly concentrated on Azure now.
Thursday, 16 July 2015
Wednesday, 15 July 2015
Alerting on OMS Solution Pack update notification
OMS (Microsoft Operations Management Suite) pushes management pack updates automatically down to your on-premise SCOM, as part of Microsoft's rapid releases.
Unfortunately there is no easy way to see when this happened, so *if* something broke - it's harder to associate with a change.
(change control - time for a rethink?)
I threw together this script to query the SCOM database and return any MP updates in the last 24 hours. And then built an alert in SCOM to tell me if it had any results from that script.
http://social.technet.microsoft.com/wiki/contents/articles/31370.alerting-in-scom-on-oms-solution-pack-updates.aspx
Unfortunately there is no easy way to see when this happened, so *if* something broke - it's harder to associate with a change.
(change control - time for a rethink?)
I threw together this script to query the SCOM database and return any MP updates in the last 24 hours. And then built an alert in SCOM to tell me if it had any results from that script.
http://social.technet.microsoft.com/wiki/contents/articles/31370.alerting-in-scom-on-oms-solution-pack-updates.aspx
Subscribe to:
Posts (Atom)