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

PowerTip: Use PowerShell to Show "Ready" Scheduled Tasks

$
0
0

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'


Viewing all articles
Browse latest Browse all 3333

Trending Articles