Ich kann eine Aufgabe von der Kommandozeile wie folgt erstellen:
schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991
und jetzt muss ich es löschen. Allerdings muss der Befehl bestätigt werden und ich weiß nicht, wie ich das aus der BATCH-Datei (bat / cmd) machen soll.
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.
Frage: Wie werden geplante Aufgaben gelöscht und Ja erzwungen?