在 win 7 中无法使用 Schtasks 运行文件
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能
schtasks
从其他目录运行 bat 文件。尝试将 cd "%~dp0" 添加到文件的开头。Probably
schtasks
runs bat file from other directory. Try to addcd "%~dp0"
to the start of the file.