Showing results for scheduled task - Scripting Blog [archived]

Jan 16, 2015
Post comments count3
Post likes count0

PowerTip: Use PowerShell to Delete Scheduled Task

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to delete a scheduled task.  How can I use Windows PowerShell to delete a scheduled task?  Use the Unregister-ScheduledTask function. By default, this command will prompt for confirmation. Therefore,            if you want to use a Windows PowerShell script to remotel...

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

PowerTip: Use PowerShell to Disable Scheduled Task

Doctor Scripto
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