-1

I would like to access client's custom performance counters in SCCM, is there any built-in functionality that would let me do that, if not, are there other some ways?

1 Answers1

2

Try using Powershell and WMI to look around:

Get-WmiObject -namespace root\ccm -class sms_client
Get-WmiObject -namespace root\ccm -list

It's fairly versatile.

aportr
  • 288
  • 3
  • 9