How to find a process with a CPU time > 25%?

Sum up of some crossed-posts about this

wmic path Win32_PerfFormattedData_PerfProc_Process where “PercentProcessorTime > 25” get PercentProcessorTime, Name, IdProcess

(and the usual disclaimer about killing a process)

and this related thread: