코딩일상

[Window] Poweshell 에서 top 역할 대신 하는법 본문

기록

[Window] Poweshell 에서 top 역할 대신 하는법

solutionMan 2024. 8. 14. 10:29
반응형

 

 

 

PowerShell에서 메모리 사용량 순으로 상위 10개 프로세스 확인

Get-Process | Sort-Object -Property WorkingSet -Descending | Select-Object -First 10 | Format-Table -Property Id,ProcessName,WorkingSet -AutoSize

 

PowerShell에서 CPU 사용량 순으로 상위 10개 프로세스 확인

Get-Process | Sort-Object -Property CPU -Descending | Select-Object -First 10 | Format-Table -Property Id,ProcessName,CPU -AutoSize

 


또는 ProcessExpolorer 사용하기

관련글

 

[윈도우] 프로세스 확인 방법 - 프로세스 익스플로러(Process Explorer)

#254 1. 프로세스 익스플로러(Process Explorer)란? 마이크로소프트에서 제공한 윈도우 시스템 모니터링 유틸리티로써 실행 중인 프로세스 목록 및 트리를 확인할 수 있습니다. 프로세스가 점유하고

goldsony.tistory.com

 

반응형
Comments