Find all the processes on a computer that started today
Here is a little PowerShell script to find all the processes on a computer that started today.
Get-Process | Where {$_.starttime -ge [datetime]::today}
You can change to any day of interest.
Get-Process | Where {$_.starttime -eq [datetime]::4/16/2007}