作为计划任务运行的批处理文件不会运行 cURL

发布于 2024-12-03 08:02:56 字数 341 浏览 1 评论 0原文

我编写了一个批处理文件,使用程序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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

め七分饶幸 2024-12-10 08:02:56

来自 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文