Summary: Use Windows PowerShell to show scheduled jobs that are ready to run.
How can I use Windows PowerShell 4.0 to find scheduled jobs that are ready to run
on my Windows 8.1 computer?
Use the Get-ScheduledTask cmdlet and filter for a state that is equal to ready:
Get-ScheduledTask | where state -eq 'ready'