Get a List of all Performance Counters

I wanted an easy way to get a List of all Performance Counters my Windows Box has.

Within Powershell it’s easy:

Get-Counter -ListSet * | select -ExpandProperty Paths

Easy, isn’t it…

PS: Output the sommand to a file, because it takes quite some time to get all counters….

Leave a Reply

Your email address will not be published. Required fields are marked *