Resolving SCOM Console Alert Clearing Issues

We recently encountered a problem with our System Center Operations Manager (SCOM) console where some old alerts could not be removed or cleared. Despite confirming that the alerts were no longer relevant, every attempt to clear them resulted in a red X generic Microsoft error, causing the console to crash. What Caused the Issue? The issue was traced back to …

Resolving SCOM Console Alert Clearing Issues Read More

System Center Operations Manager Invalid Management Group Removal

We recently carried out some work for a client who had a completely ruined installation of System Center Operations Manager (SCOM). Who had done what to it, we may never know, but it was clear that the only fix was to start again. This was not such a bad thing as they did want to change the name of their …

System Center Operations Manager Invalid Management Group Removal Read More

SCORCH runbooks not showing in SCCM or SCSM

When you create a new System Center Orchestrator Runbook and you have checked it in ready to use, you may not see it in systems that will want to use it, like Configuration Manager, Microsoft Deployment Toolkit or Service Manager. This is due to authorisation cache not updating and as so, not showing the newly created runbook. Guide To fix …

SCORCH runbooks not showing in SCCM or SCSM Read More

Operations Manager – Enable agent proxy on all agents

If you are using System Center Operations Manager (SCOM) then you may want to enable agent proxy on all your agents. If you want to do this then you can use the power of Powershell to carry this out. Just open up a Powershell command box and use the following command: get-SCOMagent | where {$_.ProxyingEnabled -match “False”} | Enable-SCOMAgentProxy If …

Operations Manager – Enable agent proxy on all agents Read More

Bulk Delete Multiple Operations Manager Management Packs [2020 Updated]

If you are using System Center Operations Manager and you want to bulk remove multiple Management Packs, then you can use the power of the Operations Manager Shell to carry it out. First of all, you need to open up the Operations Manager Shell. Then you should run the following command: where: “*Microsoft.SQLServer*” = the management pack names that you …

Bulk Delete Multiple Operations Manager Management Packs [2020 Updated] Read More

System Center Orchestrator – SQL Query to show log file data

If you are using System Center Orchestrator (SCORCH)  Runbooks then you may have run into issues where the database is increasing in size due to the large amount of log files being created. This typically occurs when monitoring event logs on servers amongst some other runbook options in SCORCH. If you want to check how many log files are in …

System Center Orchestrator – SQL Query to show log file data Read More

System Center Operations Manager – Apply Licence using PowerShell

If you are using System Center Operations Manager (SCOM) then you will find that you will need to apply your correct licence key to take it from an evaluation version up to a full version. To make this a simple process, you can run the following PowerShell command on your Operations Manager server: #Import Module import-module operationsmanager #Set License Key New-SCOMManagementGroupConnection …

System Center Operations Manager – Apply Licence using PowerShell Read More

System Center Operations Manager – Pre-Requisites Powershell Script

If you are installing System Center Operations Manager, there are a number of pre-requisites that you need to install before running the installer. To make the pre-requisites installation easier, you can run the below Powershell command which will download and install all of the pre-reqs for you. Import-Module ServerManager Add-WindowsFeature NET-Framework-Core,AS-HTTP-Activation,Web-Static-Content,Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors,Web-Http-Logging,Web-Request-Monitor,Web-Filtering,Web-Stat-Compression,AS-Web-Support,Web-Metabase,Web-Asp-Net,Web-Windows-Auth –restart ##This section will download the Report Viewer and …

System Center Operations Manager – Pre-Requisites Powershell Script Read More