January 12th, 2015

PowerTip: Use PowerShell to Show "Ready" Scheduled Tasks

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to show all scheduled tasks that are ready to run.

Hey, Scripting Guy! Question How can I use Windows PowerShell to find what scheduled tasks are ready to run on my system?

Hey, Scripting Guy! Answer Use the Get-ScheduledTask cmdlet, pipe the results to the Where-Object cmdlet, and
           filter on the state being ready, for example:

Get-ScheduledTask | where state -EQ 'ready'

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.