Does PowerSHell have *stat command analogs?

I.e. like vmstat, cpustat, iostat, fsstat, kstat ..etc?

With a little scripting, it can retrieve similar statistics. For example:

$cpu = get-process | sort-object name | select-object CPU;
$name = get-process | sort-object name | select-object Name;
$desc = get-process | sort-object name | select-object Description;

An Internet search using the appropriate keywords will retrieve many examples.