Summary: Use Windows PowerShell to display processes that return a StartTime property value.
How can I filter process information so that only processes that return a StartTime display?
Use Where-Object with the Get-Process cmdlet. Then filter on StartTime.
Get-Process | ? starttime | select name, starttime
The following command uses Windows PowerShell 2.0 syntax:
Get-Process | ? { $_.starttime} | select name, starttime