windows – 如何在没有确认的情况下从命令行删除计划任务? (schtasks删除)

前端之家收集整理的这篇文章主要介绍了windows – 如何在没有确认的情况下从命令行删除计划任务? (schtasks删除)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以从命令行创建一个任务,如下所示:
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://www.f2er.com/windows/370394.html

猜你在找的Windows相关文章