PowerTip: Use PowerShell to Show State of Scheduled Tasks

Doctor Scripto

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

Hey, Scripting Guy! Question How can I use Windows PowerShell 4.0 to find scheduled jobs that are ready to run
          on my Windows 8.1 computer?

Hey, Scripting Guy! Answer Use the Get-ScheduledTask cmdlet and filter for a state that is equal to ready:

Get-ScheduledTask | where state -eq 'ready'

0 comments

Discussion is closed.

Feedback usabilla icon