, , , ,

Powershell : Identifier les processus consommant le temps CPU

Identifier les trois principaux processus consommant du temps CPU sur l'hôte :

Get-Process | Where-Object CPU -gt 2 | Sort-Object CPU -Descending | Select-Object -First 3