Summary: Use Windows PowerShell to show all scheduled tasks that are ready to run.
How can I use Windows PowerShell to find what scheduled tasks are ready to run on my system?
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'