Post Views: 997 I just wrote a management pack which will help you to achieve Monitor multiple services. This management pack will give you the capability to control the frequency and match count. <IntervalSeconds>300</IntervalSeconds> <MatchCount>2</MatchCount> This means by default, monitors that use this will inspect the service […]
Post Views: 1,369 I have come across with a request from multiple customers, from my colleagues and in multiple forums where if any task was executed by any User in SCOM, how we will be able to get that information? I have developed a management pack for this […]
Post Views: 1,316 I have come across with a request from multiple customers, from my colleagues and in multiple forums where if any agent stop collecting data, how we will be able to get that information? I have developed a management pack for this request where I have […]
Post Views: 3,354 The PowerShell Grid Widget displays the results of a Windows PowerShell script in a grid. The script is run when the dashboard is opened and each time the component is refreshed. Here are few example which will help to create a custom dashboard. 1. Populating Dashboard from […]
Post Views: 1,875 Microsoft has released a hotfix for alert management issue in SCOM. Hotfix Download link: https://download.microsoft.com/download/e/d/3/ed3a3977-780a-4a62-9678-1aec5c5c48fa/KB4551468.EXE Hotfix Details: https://support.microsoft.com/en-us/help/4551468/system-center-operations-manager-2019-hotfix-for-alert-management Changes in Alert Management of SCOM 2019: https://techcommunity.microsoft.com/t5/system-center-blog/changes-in-alert-management-of-scom-2019/ba-p/1271326
Post Views: 4,931 This management pack is developed to monitor database health state depending on the state of the database. You might be having a requirement to exclude any of the database state like offline, suspect, emergency etc. This management pack will help you to achieve that. As […]
Post Views: 10,860 This is one of feature everyone is going to love it. UR1 having a friction-less way of patching the SCOM management server. The improvised user interface will guide you through the installation steps which will patch the management server, update both the databases (Operations DB and Data […]
Post Views: 2,096 I will not be going to discuss how to install UR1 for SCOM 2019, but I will discuss an issue while I was trying to update UR1 for my SCOM 2019 infra. Microsoft product group has now introduced Simplified management server patching experience which […]
Post Views: 5,888 I have seen in couple of Forum posts and in MS support cases where customer is having issues while dealing with SQL management pack workflows. I will discuss the some of the tips and tricks which will help you to identify if we have any issues […]
Post Views: 1,800 This Script will return all the Rules which are Monitoring or collecting any events in SCOM. $Cur = Get-Location Import-Module OperationsManager $Rules = Get-SCOMRule $RuleNames = $Rules.Name foreach ($Rule in $RuleNames) { $RuleName = Get-SCOMRule -Name “$Rule” $Configuration = $RuleName.DataSourceCollection $RuleConfig = $Configuration.Configuration If […]