作为计划任务运行的批处理文件不会运行 cURL
我编写了一个批处理文件,使用程序curl.exe来下载数据库备份文件。当我通过双击运行该程序时,该程序运行得很好,但是当我使用 schtasks 安排任务时,它无法识别curl。
我立即认为这是 PATH
变量,因此我更新了 PATH
变量以指向 curl
所在的目录,并通过运行curl 对其进行了测试来自C:\
。它在 C:\
上工作得很好,但由于某种原因,当我运行计划任务时,它会启动批处理文件,并且批处理文件显示“curl 未被识别为内部或外部命令、可操作程序或批处理”文件。”
知道为什么会这样吗?
I wrote a batch file that uses the program curl.exe to download a database backup file. The program runs great when I run it by double clicking on it, but when I schedule the task using schtasks
it won't recognize curl.
Right away I figured it was the PATH
variable so I updated the PATH
variable to point to the directory curl
is in and tested it by running curl from C:\
. It works great from C:\
but for some reason when I run the scheduled task it launches the batch file and the batch file says "curl is not recognized as an internal or external command, operable program or batch file."
Any idea why this would be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 schtasks 的文档:
/tr 任务运行:指定任务运行的程序或命令。键入可执行文件、脚本文件或批处理文件的完全限定路径和文件名。如果省略路径,SchTasks.exe 会假定该文件位于 Systemroot\System32 目录中。
因此,它似乎没有查看路径变量,尽管它看起来最有意义。
From the documentation of schtasks:
/tr TaskRun : Specifies the program or command that the task runs. Type the fully qualified path and file name of an executable file, script file, or batch file. If you omit the path, SchTasks.exe assumes that the file is in the Systemroot\System32 directory.
So it does not appear to look at the path variable, even though it would appear to make the most sense.