Questions tagged «task-scheduler»

任务计划程序是Windows中的一个组件,与UNIX cron守护程序一样,它允许脚本在定义的时间运行。

0
Windows预定任务交互模式(GUI)
我试图通过Windows XP虚拟机客户机中的任务调度程序运行应用程序(Selenium测试),该客户机允许桌面交互(键盘按下,通过Firefox移动)。我试图运行一个调用的批处理psexec -i,但应用程序仍然失败。 如何在没有用户登录系统的情况下运行计划任务?如果用户登录系统,则测试可以正常运行,但是当计划在特定时间运行时,测试无法正常运行。


0
使用批处理命令在Windows Scheduler中计划任务
我们如何使用批处理文件在Windows Scheduler中计划任务。我想使用批处理命令设置调度程序。 echo off title Install Pentaho set /p downloadPentaho=Dowload Pentaho [y/n]?: if %downloadPentaho%==y (call :download_pentaho) else (echo termenating program) set /p downloadKtr=Dowload KTR files [y/n]?: if %downloadKtr%==y (call :download_ktr) else (echo termenating program) REM extract the ktr files and schedule pentaho in the windows server set /p downloadBatch=Dowload Pentaho …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.