Puedo crear una tarea desde la línea de comando como esta:
schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991
y ahora necesito eliminarlo. Sin embargo, el comando debe confirmarse y no sé cómo hacerlo desde el archivo 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.
Pregunta: ¿Cómo eliminar la tarea programada y forzar sí?