Windows 在任务计划程序中指定秒数

Windows 在任务计划程序中指定秒数,windows,Windows,我的命令行是: schtasks /Create /SC ONCE /ST 00:00:30 /TN MyApp /TR notepad.exe 但是任务在00:00初始化,为什么忽略30秒 我的操作系统是Windows 7。从schtasks/create?的输出: /ST starttime Specifies the start time to run the task. The time format is HH:mm (24 hour

我的命令行是:

schtasks /Create /SC ONCE /ST 00:00:30 /TN MyApp /TR notepad.exe
但是任务在00:00初始化,为什么忽略30秒


我的操作系统是Windows 7。

schtasks/create?
的输出:

  /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.

如您所见,/ST参数的格式中没有秒。

如果使用例如00:05:00,会发生什么?它仍然被忽视吗?