Quantcast
Viewing all articles
Browse latest Browse all 36188

PowerTip: Use PowerShell to Easily See Process Start Time

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

Image may be NSFW.
Clik here to view.
Hey, Scripting Guy! Question
 
How can I see the name and the start time of each process on my system?

Image may be NSFW.
Clik here to view.
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.

 

Image may be NSFW.
Clik here to view.

Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 36188

Trending Articles