Solution: Run the below command in Powershell
Get-Process | Sort-Object -Property CPU -Descending | Select-Object -First 5 -Property Name, ID, CPU, @{Name="CPUPercent";Expression={[math]::Round(($_.CPU / (Get-CimInstance Win32_Processor).NumberOfCores / 1000), 2)}} | Format-Table -AutoSize
Explanation: Lists the top 5 CPU-intensive processes with name, ID, total CPU time, and estimated CPU percentage. Run as Administrator for full details.