Se você olhar para schtasks /Create /?
(pelo menos no Windows 7):
/ST starttime Specifies the start time to run the task. The time format is HH:mm (24 hour time) for example, 14:30 for 2:30 PM. Defaults to current time if /ST is not specified. This option is required with /SC ONCE.
/SD startdate Specifies the first date on which the task runs. The format is dd/mm/yyyy. Defaults to the current date. This is not applicable for schedule types: ONCE, ONSTART, ONLOGON, ONIDLE, ONEVENT.
Portanto, seu /SD
está em um formato inválido e /ST
não suporta a segunda precisão. É provável que você precise de alguma outra ferramenta para configurar a tarefa.
Você pode tentar usar o PowerShell com New-ScheduledTaskTrigger
, New-ScheduledTaskAction
e Register-ScheduledTask
.