Post Views: 21 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: 730 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: 1,710 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: 6,997 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: 960 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: 1,165 This article discusses how to resolve the host in not responding state due to the following error. Error (20552) VMM does not have appropriate permissions to access the resource on the host2.domain.com server. Recommended Action Ensure that Virtual Machine Manager has the appropriate […]
Post Views: 678 VMware vSphere integration pack integration pack for VMware vSphere is an add-on for System Center – Orchestrator, it assists you in automating actions in VMware vSphere, enabling full management of your virtualized computing infrastructure. After following the article https://docs.microsoft.com/en-us/system-center/orchestrator/vsphere-integration-pack?view=sc-orch-2019 to integrate the VMWare with […]
Post Views: 1,910 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: 572 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 […]
Post Views: 825 Today I will discuss here how we can connect to SCOM SDK from a remote computer where we don’t need to copy the SDK binaries. I am going to use ScriptBlock to connect the PowerShell of the remote machine. Please find the sample piece of […]