Summary: Use Windows PowerShell to find the status of scheduled tasks.
My laptop is acting strangely. Task Manager shows lots of processes running, but I have disabled everything I can see.
How can I use Windows PowerShell to determine what scheduled tasks are running in the background?
Use the Get-ScheduledTask cmdlet and sort by the state:
Get-ScheduledTask | sort state