次のようなコマンドラインからタスクを作成できます。
schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991
そして今私はそれを削除する必要があります。ただし、コマンドを確認する必要があり、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.
質問:スケジュールされたタスクを削除し、はいを強制する方法は?