Bagaimana cara menghapus tugas terjadwal dari baris perintah tanpa konfirmasi? (hapus schtasks)

17

Saya dapat membuat tugas dari baris perintah seperti ini:

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

dan sekarang saya harus menghapusnya. Namun perintah perlu dikonfirmasi dan saya tidak tahu bagaimana melakukannya dari file 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.

Pertanyaan: Bagaimana cara menghapus tugas terjadwal dan memaksa ya?

Tomas Mirezko
sumber

Jawaban: