You can run "Get-Counter -ListSet *" command in powershell command prompt to list all the available Performance Counters on windows 10.

If you are looking for a specific counter name then use the following search command.


Get-Counter -ListSet * | Where-Object {$_.PathsWithInstances -like '*SEARCH_STRING*'} | Sort-Object -Property CounterSetName | Format-Table CounterSetName, Paths -AutoSize