How do you find the most CPU intensive processes?
If you want to know the processes that are taking most CPU on your system right now then use Get-Process
PS> Get-Process | sort CPU -Descending | select -First 10
Will display the 10 processes… Read the full text.