问题描述
我需要一个适用于 Windows 的任务计划程序.不幸的是,内置调度程序不能满足我的需求,它们是:
- 可以每分钟/小时运行一次任务
- 在 Linux 和 Windows 上运行
- 32 位和 64 位版本
- 图形用户界面
- 免费
值得拥有:
- 支持 CRON 文件
- 开源
- 执行时间的状态报告
谢谢!
只是对您关于 Windows 任务计划程序的声明进行了一些更正.
- 可以每分钟/小时运行一次任务
每小时:
- 免费
包含在每个 Windows 安装中.应该够了,我会说.
I need a Task Scheduler for Windows. Unfortunately the builtin scheduler doesn't meet my needs, which are:
- can run tasks every minute/hour
- runs on Linux and Windows
- 32 and 64 bit versions
- GUI interface
- free
Nice to haves:
- supports CRON files
- open source
- status reports of execution times
thanks!
Just some corrections on your claims regarding the Windows Task Scheduler.
Every hour:
or minute:
Ok, you get that probably only with cron. But Windows and Linux are different enough to warrant OS-specific stuff anyway, so why bother burdening Windows users with yet another scheduler? (There are already too many out there as nearly every single application that needs something scheduled includes its own ...)
Same for an arbitrary non-cron scheduler for Linux, though, just for both platforms, then.
The Windows Task Scheduler runs as a service, bittiness is kinda a no-issue there as it only starts other processes which couldn't care less about whether their spawner was 32 or 64 bit. However, it's available in 64 and 32 bit.
Enough GUI?
Included in every Windows installation. Should suffice, I'd say.
这篇关于Windows 任务计划程序的替代方案的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!