hmmm
Get-Process | Where-Object {$_.StartTime} | Sort-Object StartTime -Descending | Select-Object ProcessName,Id,StartTime | Format-Table -AutoSize
You could sort them by the order of most recently opened
hmmm
Get-Process | Where-Object {$_.StartTime} | Sort-Object StartTime -Descending | Select-Object ProcessName,Id,StartTime | Format-Table -AutoSize
You could sort them by the order of most recently opened