📜  使用 powershell 检查顶级 cpu 进程 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:13.500000             🧑  作者: Mango

代码示例1
Get-Process -IncludeUserName | Sort-Object CPU -desc | Select -first 5| Select ProcessName,ID,CPU,UserName,Description | Format-Table -AutoSize