Skip to content

Instantly share code, notes, and snippets.

@gitfvb
Last active December 3, 2024 19:34
Show Gist options
  • Save gitfvb/e809ded17baa378a81e9fa0dbafca281 to your computer and use it in GitHub Desktop.
Save gitfvb/e809ded17baa378a81e9fa0dbafca281 to your computer and use it in GitHub Desktop.
Use of Powershell performance indicators with get-counter

Show all available counters, be careful, this seems to be language dependent

get-counter -listset * | Out-GridView
get-counter -listset "*Netzwerk*" | fl
get-counter -listset "*Netzwerk*" | % { $_.Counter }

Show all available processes

get-process | Out-GridView -PassThru
@gitfvb
Copy link
Author

gitfvb commented Dec 3, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment