Found this one in my toolkit recently and thought I’d share. It’s a little old so the code could do with some optimizing.. What it does: Prompts the script runner […]
SCOM
Disable all alerts for a SCOM management pack using PowerShell
So use this wisely… This script will use Out-Gridview to prompt the operator for the management pack to disable the alerts for and the override management pack to save those […]
Create empty Management Pack from SCOM via PowerShell
Found this one in my toolkit recently and thought I’d share. It’s a little old so the code could do with some optimizing.. What it does: Prompts the script runner […]
SCOM 2016 Console ‘An object of class ManagementPackFolder with ID xxxxxxx’– SC 2016 bug
EDIT: Fix posted here: SCOM Console Fix So, if any of you are using SCOM 2016 and have recently deployed the console, you may be getting this error below: […]
SCOM – Service Monitor & Remediation
How to create a custom service monitor and automatically restart it For this little demo, we will be using the Print Spooler service and targeting Windows Operating […]
Import subscribers into SCOM via PowerShell
Quick post A client had an existing monitoring system and exported the subscriber address list to CSV. They wanted some names updated to reflect the DC and existing name, also […]
Set Agent Proxy Default setting – SCOM 2012 R2
Run this on any server that has the SCOM Console installed. add-pssnapin “Microsoft.EnterpriseManagement.OperationsManager.Client”; new-managementGroupConnection -ConnectionString:scomserver.domain.com; set-location “OperationsManagerMonitoring::”; Set-DefaultSetting -Name HealthServiceProxyingEnabled -Value True Totally stole this from the SCOM aficionado – […]
SCOM 2012 R2 – Moving the operationsmanager DB from SQL server to new SQL Cluster
Moving SCOM 2012 R2 operationsdatabase to SQL Cluster. Process derived from this TechNet article http://technet.microsoft.com/en-au/library/hh278848.aspx Quick overview of the environment Versioning of my environment: System Center Operations Manger 2012 R2 w/ Update […]