在 Windows 上安排作业
在 Windows 上安排简单批处理作业的最佳方法是什么?我当前的需求是每天晚上转储一些 SVN 存储库,并将转储文件通过 FTP 传输到我们的外部 FTP 端,然后向一个或多个人发送电子邮件告知备份已完成/失败。
这听起来像是我通常在 unix 脚本 + cron 中做的事情。在windows上可以吗?也许使用 Cygwin?
What is the best way of scheduling simple batch jobs on windows? My current need is to dump some SVN repositories each night and FTP the dumps to our external FTP side and then e-mail one or more people that the backup has completed/failed.
This sounds like the sort of thing I would usually do in a unix script + cron. Is that possible on windows? Perhaps using Cygwin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 计划任务。该区域可通过控制面板访问,并且可能需要管理权限。它基本上是 Windows 的 crontab。使用指定用户按指定时间间隔运行 Windows 批处理文件(或任何可执行文件)。
Windows Scheduled Tasks. This area is available through the control panel and may require administrative rights. It's basically crontab for Windows. Run a Windows batch file (or any executable) at a specified interval using a specified user.