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?