Service Manager
A family of System Center products for managing incidents and problems.
241 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
We would like to fetch device (instance properties) data from SCOM.
We have explored various approaches, such as:
Could you please advise if there is a preferred method to fetch the required data?
Hi,
What specific properties are you looking to fetch?
Direct queries to the SCOM database, despite its complexity and potential risks, provide access to raw data.
We can utilize the following query to dig the database.
select * from MTV_Computer
select * from INFORMATION_SCHEMA.TABLES
where TABLE_NAME like '%computer%'
select * from INFORMATION_SCHEMA.COLUMNS
where COLUMN_NAME like '%mac%'