windows scheduler to run a batch script (.bat) every x

This question already has an answer here:

  • Run a task every x-minutes with Windows Task Scheduler [closed] 8 answers

  • You can use the following to create a new scheduler

    SCHTASKS /Create /SC MINUTE /MO 30 /TN MyTaskName /TR "c:/myBat.bat"
    

    If you need additional settings, use

    SCHTASKS /Create /?
    
    链接地址: http://www.djcxy.com/p/38912.html

    上一篇: 计划的Web应用程序任务

    下一篇: Windows调度程序每x运行一个批处理脚本(.bat)