Comment supprimer une tâche planifiée de la ligne de commande sans confirmation? (suppression des schtasks)

17

Je peux créer une tâche à partir de la ligne de commande comme ceci:

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

et maintenant je dois le supprimer. Cependant, la commande doit être confirmée et je ne sais pas comment faire cela à partir du fichier 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.

Question: Comment supprimer une tâche planifiée et forcer oui?

Tomas Mirezko
la source

Réponses: