什么是cron的Windows版本?

谷歌搜索发现了与cron执行相同功能的软件,但没有内置到Windows中。

我正在运行Windows XP Professional,但任何Windows版本的建议都可能对某人有帮助。

是否还有一种方法可以通过编程方式或通过命令行调用此功能(基于答案称为Task Scheduler)?


对于原始问题,询问Windows XP(和Windows 7):Windows任务计划程序

对于命令行使用,您可以使用AT命令进行计划。

对于较新的Microsoft操作系统版本Windows Server 2012 / Windows 8,请查看schtasks命令行实用程序。
如果使用PowerShell,Windows PowerShell中的计划任务Cmdlet将用于编写脚本。


Windows的“AT”命令与cron非常相似。 它通过命令行可用。


pycron在Windows上很接近。

支持以下条目:

1    Minute (0-59)
2    Hour (2-24)
3    Day of month (1-31)
4    Month (1-12, Jan, Feb, etc)
5    Day of week (0-6) 0 = Sunday, 1 = Monday etc or Sun, Mon, etc)
6    User that the command will run as
7    Command to execute
链接地址: http://www.djcxy.com/p/38905.html

上一篇: What is the Windows version of cron?

下一篇: How to structure an Email and SMS sending web app that runs in the background