Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Show State of Scheduled Tasks

$
0
0

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'


Viewing all articles
Browse latest Browse all 3333

Trending Articles