Showing archive results for January 2015

Jan 14, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Disable Scheduled Task

Doctor Scripto

Summary: Learn how to use Windows PowerShell to disable a scheduled task.  How can I use Windows PowerShell to disable a scheduled task?  Use the Disable-ScheduledTask cmdlet from the Scheduled Task module, for example: Disable-ScheduledTask -TaskName applog Note  This cmdlet was introduced in Windows 8 and W...

Scripting Guy!Windows PowerShellPowerTip
Jan 14, 2015
Post comments count0
Post likes count0

Use PowerShell to Configure Scheduled Task

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to configure a scheduled task. Microsoft Scripting Guy, Ed Wilson, is here. This morning is a coffee morning. I don’t have a lot of coffee mornings, but occasionally I break down and desire a raw coffee jolt. When I do, I use my French press, some spring water, ...

Scripting Guy!Windows PowerShelloperating system
Jan 13, 2015
Post comments count0
Post likes count0

PowerTip: Find Scheduled Tasks with PowerShell

Doctor Scripto

Summary: Use Windows PowerShell to find the location of scheduled tasks.  How can I use Windows PowerShell to easily look for scheduled tasks in the graphical tool?  Use the Get-ScheduledTask cmdlet and search on the TaskPath property. Related scheduled tasks are            grouped togethe...

Scripting Guy!Windows PowerShellPowerTip
Jan 13, 2015
Post comments count0
Post likes count0

Use PowerShell to Create Scheduled Tasks

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to create a scheduled task. Microsoft Scripting Guy, Ed Wilson, is here. Today, it is cold, wet, and rainy—not exactly my favorite combination. In fact, I would rather have snow. At least then there would be an excuse for the dreariness. Oh well. Snow in the dee...

Scripting Guy!Windows PowerShelloperating system
Jan 12, 2015
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Show "Ready" Scheduled Tasks

Doctor Scripto

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 stat...

Scripting Guy!Windows PowerShellPowerTip