C:\> schtasks /delete /tn ContextSwitchTask /f
Eu posso criar uma tarefa a partir da linha de comando assim:
schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991
e agora preciso excluí-lo. No entanto, o comando precisa ser confirmado e eu não sei como fazer isso a partir do arquivo 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.
Pergunta: Como excluir tarefa agendada e forçar sim?