在 Windows 7 桌面上自动运行任务
我有一个 CSV 文件,我的计算机每 15 分钟自动下载一次。然后,我想使用他们的 API 自动将此 CSV 上传到我的 Google 文档帐户。
我想我可以编写一个简单的 VBScript,从其位置提取 CSV 文件并将 POST 到 Google Docs API,但我的问题是如何将脚本设置为在 Windows 7 环境中每 15 分钟运行一次。
感谢您的帮助!
I have a CSV that my computer downloads every 15 minutes automatically. I then want to automatically upload this CSV to my Google Docs account using their API.
I figure I can write a simple VBScript that pulls the CSV file from it's location and POSTs to the Google Docs API but my question is how do I set the script to run every 15 minutes in the Windows 7 environment.
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
很简单:Windows 任务计划程序。 链接
编辑:呃,可能是一个糟糕的链接。 这更加具体。您还可以使用 at 命令从命令行执行此操作。
Simple: the Windows task scheduler. Link
EDIT: Eh, probably a poor link. This is more specific. You can also do it from the command line with the at command.
脚本的问题在于它的监控服务很差。如果您要编写一个 Windows 服务,它可以自动恢复并记录。
The problem with the script that it has poor monitor service. If you will write a windows service it can be resumed and logged automatically.