Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: Use PowerShell to disable all scheduled tasks in folder

Summary: Use Windows PowerShell to disable all scheduled tasks in a specific folder. (image)  How can I use Windows PowerShell to disable all scheduled tasks in a particular folder? (image)  Use the Get-ScheduledTask cmdlet to enumerate the scheduled tasks in the folder, and then pipe the objects to the Disable-ScheduledTask cmdlet, for ...