I can create a task from command line like this:

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

and now I need to delete it. However the command needs to be confirmed and I don't know how to do that from BATCH file (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.

Question: How to delete scheduled task and force yes?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted
C:\> schtasks /delete /tn ContextSwitchTask /f
link|improve this answer
thanks, I totally missed that :) – Tomas Mirezko Oct 8 '11 at 10:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.