在 win 7 中无法使用 Schtasks 运行文件

发布于 2025-01-01 21:32:45 字数 349 浏览 1 评论 0原文

使用 Schtasks 命令我创建一个作业。

schtasks /create /sc minute /mo 20 /tn "My App" /tr c:\run.bat

它创建成功并且也运行。

在 run.bat 文件中,我编写了以下代码:

dir > sctask.txt

当我双击 run.bat 文件时,它会创建 sctask.txt 文件并将该文件夹的所有目录名称写入 sctask.txt。

但是当Schtasks执行run.bat文件时,它不会创建sctask.txt,而是运行run.bat文件

Using Schtasks command i create a job.

schtasks /create /sc minute /mo 20 /tn "My App" /tr c:\run.bat

it created successfully and run also.

Inside the run.bat file file i write this code :

dir > sctask.txt

When i double click on run.bat file it create the sctask.txt file and all dir name of that folder into sctask.txt.

But when run.bat file excuted by Schtasks it is not create sctask.txt but it run the run.bat file

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甜味拾荒者 2025-01-08 21:32:45

可能 schtasks 从其他目录运行 bat 文件。尝试将 cd "%~dp0" 添加到文件的开头。

Probably schtasks runs bat file from other directory. Try to add cd "%~dp0" to the start of the file.

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