Windows

如何在不確認的情況下從命令行刪除計劃任務?(schtasks刪除)

  • December 3, 2013

我可以像這樣從命令行創建一個任務:

schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991

現在我需要刪除它。但是該命令需要確認,我不知道如何從 BATCH 文件(bat/cmd)中執行此操作。

C:\> schtasks /delete /tn ContextSwitchTask
WARNING: Are you sure you want to remove the task "ContextSwitchTask" (Y/N)?

C:\> echo Y | schtasks /delete /tn ContextSwitchTask
WARNING: Are you sure you want to remove the task "ContextSwitchTask" (Y/N)? Y
ERROR: Invalid input.
Type "SCHTASKS /DELETE /?" for usage.

問題:如何刪除計劃任務並強制是?

C:\> schtasks /delete /tn ContextSwitchTask /f

引用自:https://serverfault.com/questions/319701