Skip to content

SDF-OBS-01 โ€” get-process.ps1

Purpose:
To observe running processes and identify high CPU usage using PowerShell.


๐Ÿงญ Script Example

Get-Process | Sort-Object CPU -Descending | Select-Object -First 10

๐Ÿ“Š What It Shows

  • Process name
  • CPU time used
  • Memory footprint
  • ID and status

๐Ÿง  Reflection

  • Which process consumed the most CPU?
  • Was it expected or surprising?