Questions tagged [scom]

System Center Operations Manager (SCOM) is a cross-platform data center management system for operating systems and hypervisors.

System Center Operations Manager (SCOM) is a cross-platform data center management system for operating systems and hypervisors. It uses a single interface that shows state, health and performance information of computer systems. It also provides alerts generated according to some availability, performance, configuration or security situation being identified. It works with Microsoft Windows Server and Unix-based hosts.

(Information sourced from Wikipedia)

134 questions
1
vote
0 answers

Repeated Error in SQL Server 2017 Error Log (Error: 15404, error-code 0x5)

I'm relatively new to SQLServer2017 Developer and System Center Operations Manager however I was asked to set up a SCOM test environment for our network. However, I keep receiving this error about one of my SCOM service accounts. I have already…
1
vote
1 answer

SCOM Powershell How to Access IPAddress, Network and DefaultIPGateway

I am querying SCOM in a Powershell script to need get the default gateway for a network adapter. Using the following command I am able to get the related monitoring object: $nic = Get-SCOMClass -name 'Microsoft.Windows.NetworkAdapter' |…
1
vote
1 answer

"File not found": when trying to create a new Folder in a Library with blank at the first in the title

I am trying to create a new folder within a document library. Actually, the code works well, but when the title of the new folder starts with a blank, I get an exception "File not found" and the folder is not created. I already tried to encode the…
MaxEMunich
  • 21
  • 3
1
vote
1 answer

System Center Operations Manager (SCOM) 1801 REST API Authentication in PHP

I am developing an integration class in PHP to access SCOM data using the new REST API interface. I cannot find additional documentation to connect to the API using PHP. What I have so far is this: $url =…
1
vote
1 answer

SCOM Create ClassInstance Override via PowerShell

At this point I'm getting pretty desperate for help.. Because of certain configuration issues (I will not be going into details about this... I had nothing to do with it, I'm just dealing with the issues having to use SCOM afterwards...) I am in…
1
vote
1 answer

Health State does not change in SCOM

Our SCOM version is 7.3.13142.0 We have developed Management Pack for SCOM integration. Please review Management Pack source code:
Alexander I.
  • 2,380
  • 3
  • 17
  • 42
1
vote
1 answer

SCOM - View last logged on users

We are searching for a way to get the latest known (scanned/collected/...) logged on users in SCOM (1801). For every device in SCOM, we quickly want to see who were the latest logged on users. Even if a server is not available anymore, we want to…
AM_Simon
  • 11
  • 2
1
vote
1 answer

Can't Open Connection String to SQL Server in VBSscript

I have a .vbs script that runs the following sql query: Select COUNT (*) from sys.objects Which count the rows, from the sql query output: https://i.stack.imgur.com/wduXW.png[1] And if there is any rows found (> 0). genereate an alert in SCOM using…
edwio
  • 198
  • 3
  • 20
1
vote
1 answer

How to set Connection Timeout for SCOM SDK

I have next code: private ManagementGroup ConnectToManagementGroup(string serverName, string domain, string userName, string password) { var settings = new ManagementGroupConnectionSettings(serverName) { UserName = userName, …
Alexander I.
  • 2,380
  • 3
  • 17
  • 42
1
vote
1 answer

How to create SCOM management pack monitor with three states

I develop integration with SCOM. But I am a green hand in it. I have created management pack XML and it works fine. Please review management pack below:
Alexander I.
  • 2,380
  • 3
  • 17
  • 42
1
vote
1 answer

SP Client Object Model - add multiple new items to a list with only one ExecuteQuery

I have been reading about executing only one query after queuing up multiple items for processing in a SP list. I have the following code where I have a button that loads in a bunch of records into an empty SP list from an Excel spreadsheet. If I…
robertsirwin
  • 161
  • 1
  • 3
  • 14
1
vote
1 answer

System Center Operations Manager 2016 API

I am playing with System Center Operations Manager 2012 R2 and 2016, and I would like to integrate the overall SCOM status into another monitoring solution (Cacti). Is there an API to query the status of the SCOM Management Server and the number of…
Daniel
  • 21
  • 4
1
vote
2 answers

How can you access raw Microsoft SCOM metrics?

I am looking for some inspiration to how I can access metrics collected by SCOM? Essentially I want to extract the CPU, Memory and disk utilisation metrics, normalize and POST to an external SaaS solution via an API. As SCOM already collects…
1
vote
1 answer

Powershell // CSV-Output in foreach

I´m working with SCOM (SystemCenterOperationsManager) and wrote a little script for an scheduled task. It should collect all NEW ( ResolutionState = 0 ) Alerts and filter them with my Wildcard rule. It will Change the resolution state for all…
1
vote
2 answers

Way to use powershell params in comparison?

I have some ps code, that downloads xml via http and check some xml in it [xml]$stuff = $wc.DownloadString('url') $xmlvalue = $stuff.SelectSingleNode('xpath') if ($xmlvalue.'#text' -eq "value") { $state = 'OK' Write-Host 'ok' } All i need…
Igor Kuznetsov
  • 421
  • 1
  • 6
  • 15
1
2
3
8 9