Post Views: 3,879 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,231 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,579 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,097 $Alert = Get-SCOMAlert -Name “Alert Name” $MonitorID = $Alert.MonitoringRuleId $MonitorName = Get-SCOMMonitor -id $MonitorID $managementpack = $MonitorName.GetManagementPack() $managementpackname = $managementpack.DisplayName $managementpackname
Post Views: 1,230 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,063 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) […]
Post Views: 6,207 Select mh.INSTALLTIME,mh.INSTALLEDBY,bm.displayname,av.isAvailable from dbo.MT_HealthService mhinner join BaseManagedEntity bm on mh.basemanagedentityid=bm.basemanagedentityidinner join dbo.Availability av on av.basemanagedentityid =mh.basemanagedentityidWHERE bm.DISPLAYNAME IN(‘ServerName’) Query to Update for all Manually installed Agent: UPDATE MT_HealthService SET IsManuallyInstalled=0 WHERE IsManuallyInstalled=1 Query to Update for specific Manually installed Agent: UPDATE MT_HealthService SET IsManuallyInstalled=0 WHERE […]
Post Views: 1,981 I have seen many posts in common forum and it seems that many of you are having challenges when it comes to moving the SCOM database to a new SQL database instances. The process is bit complex, so it’s become a bit challenges to […]
Post Views: 1,006 Error while accessing the connector tab in SCOM We have recreated the connector in SCOM to forward the alert to ticketing system. But while accessing the connector tab, we are getting the below error. Application: Operations Manager Application Version: 7.2.12150.0 Severity: Error Message: […]
Post Views: 7,209 procedure to install the SCOM agent on Workgroup Server To install a SCOM agent on a workgroup server, we need to follow three steps Manual SCOM agent installation Certificate installation steps Bind the certificate with healthservice using Momcertimport.exe tool Manual SCOM […]