January 11th, 2015

PowerTip: Use PowerShell to Find Status of Scheduled Tasks

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to find the status of scheduled tasks.

Hey, Scripting Guy! Question 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?

Hey, Scripting Guy! Answer Use the Get-ScheduledTask cmdlet and sort by the state:

Get-ScheduledTask | sort state

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.