# Replace column names
`| Select-Object @{N='samAccountName'; E={$_.InputObject}},@{N='Action'; E={$_.SideIndicator}}`

# convert timestamp
`Select @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}}`

# check error
`$Error[0] | fl *`