Post Views: 11,298 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,311 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: 6,345 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: 2,043 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: 4,242 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 […]
Post Views: 3,477 This is one of the most demanded features in SCOM. As a SCOM admin, we were eagerly waiting for it and Microsoft had introduced this feature in SCOM 2016 for the first time and is available on the latest version of the SCOM products […]
Post Views: 1,797 You can get the Script from the below link. https://github.com/souravmahato7/Codes/blob/SCOM/Get_All_The_ServiceMonitor.PS1 ################################################################## #Author: Sourav Mahato #Created Date:08/26/2019 #Modified Date:12/22/2019 #Purpose: Script for get all the service Monitor in SCOM #How to run: You just need to run it from SCOM Management Server and create Temp […]
Post Views: 1,213 $Alert = Get-SCOMAlert -Name “Alert Name” $MonitorID = $Alert.MonitoringRuleId $MonitorName = Get-SCOMMonitor -id $MonitorID $managementpack = $MonitorName.GetManagementPack() $managementpackname = $managementpack.DisplayName $managementpackname
Post Views: 1,403 Action Plan: Please upgrade the agent first by running the following command line. msiexec /i MOMAgent.msi /qn /l*v “C:\New folder\amd64\AgentUpgrade.log” AcceptEndUserLicenseAgreement=1 https://docs.microsoft.com/en-us/system-center/scom/deploy-upgrade-agents?view=sc-om-2019 Now we need to add the management group and management server name by following any of the below process. […]
Post Views: 2,274 Windows server 2016 Operating System is not supported for SCOM 2012 SP1. So I would recommend to upgrade the OS to Windows server 2012 R2. https://docs.microsoft.com/en-us/previous-versions/system-center/system-center-2012-R2/jj656654(v=sc.12) Before proceeding with any of the below action plan, please make sure you have full backup (working) […]