All Tags »
PowerShell »
syntax »
named instances »
PerfMon »
performance counters (RSS)
Sorry, but there are no more tags available to filter with.
-
This afternoon I was working on a little PowerShell script to collect some PerfMon counters. I borrowed some code from myself, and had counters represented in strings like the following (this is a greatly simplified version):
Get-Counter -Counter ''\SQLServer:Wait Statistics(Average wait time (ms))\Lock waits''
The above code ...