April 29th, 2014

PowerTip: Use PowerShell to Show State of Scheduled Tasks

Doctor Scripto
Scripter

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'

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.

Feedback