PowerShell

Dump Object

Like PHP's var_dump().

$Obj | Format-Custom -Property * -Depth 8

Bsp.

Get-Process | Select-Object -First 1 | Format-Custom -Property * -Depth 8

https://stackoverflow.com/a/2846156