PowerTip: Use PowerShell to Show "Ready" Scheduled Tasks

Doctor Scripto

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'

0 comments

Discussion is closed.

Feedback usabilla icon