Disk activity in PowerShell?

Possible to get something similar to the output of Resource Monitor’s Disk Activity GUI - as a table in PowerShell?

Particularly interested in something like “top 10 processes by Response Time”.

Thanks!

Performance metrics should be stored in the various Win32_Perf* WMI/CIM classes
So to see all the classes

Get-CimClass -ClassName Win32_Perf*
Get-CimInstance Win32_PerfFormattedData_Counters_ProcessV2 

Believe this is the class you are looking for