#TodayILearned that you can pipe into get-date within a select expression:

get-DBAAgentJobHistory -SQLInstance $SqlInstance | select StartDate, @{ L = ‘JustTheMinutes’ E= {$_.startdate | get-date -Format “MM/dd/yyyy HH:mm”}}

Via @IISResetMe at stackoverflow.com/a/4686287…