Ying Li at myITforum.com

PowerShell & System Center

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}

Posted: Apr 17 2007, 10:13 AM by yli628 | with no comments
Filed under:

Comments

No Comments