1.创建任务

 在每天的22.44定时执行一次。

schtasks /create /tn "test3" /tr "F:\test.bat" /sc daily /st :

 在特定时间运行一次。

schtasks /create /tn "test3" /tr "F:\test.bat" /sc once /st : /sd //

2.运行一次任务

 创建任务后,立即运行一次。

schtasks /run /tn test3

3.删除任务

 任务不准备用时,删除任务。

schtasks /delete /tn test3
05-11 19:53