November 18th, 2012

PowerTip: Use PowerShell to Easily See Process Start Time

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to view process start time information.

Hey, Scripting Guy! Question How can I see the name and the start time of each process on my system?

Hey, Scripting Guy! Answer 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.

 

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.