All Tags »
Tips »
PowerShell »
SQL Server »
Scripts »
Performance Tuning (RSS)
Sorry, but there are no more tags available to filter with.
-
In version 2.0 of PowerShell, you can now use a direct command-let (get-Counter) to get at the Performance Monitor counters. For instance, to show the current value of the Processor Percent Time, use this command:
Get-Counter '\Processor(*)\% Processor Time'
The interesting part of get-Counter is that you can add a ...