Summary: Learn how to use Windows PowerShell to view process start time information.
How can I see the name and the start time of each process on my system?
Start Windows PowerShell with admin rights. Use the Get-Process cmdlet and select name and starttime, as shown here.
Get-Process | select name, starttime
Note If you do not start Windows PowerShell with admin rights, you will not see system process information.