AT命令如何使用?
我认为自己是一名中级程序员,但由于某种原因我不知道如何使用 AT
命令。它是什么?我该如何使用它?有人可以向我展示 BATCH 文件中的 AT
命令示例吗?谢谢,杰克
I would count myself as a intermediate programmer but for some reason I don't know how to use the AT
command. What is it? How do I use it? Can someone show me an example of the AT
command in a BATCH file? Thanks, Jake
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
at
安排延迟或重复执行的任务。至于如何使用——命令本身的语法描述还不够吗?无论如何,TechNet 上的文档都有示例。
最简单的方法当然是在您需要运行某些内容时只运行一次:
但是,如果您在安排任务时需要更大的灵活性,则应该考虑使用
schtasks
来代替。例如,您只能以本地管理员身份使用at
,而schtasks
可以执行at
可以执行的所有操作,甚至更多。at
schedules tasks for deferred or repeated execution. As for how to use it – isn't the syntax description of the command itself not enough?In any case, the documentation on TechNet has examples.
The easiest way is certainly just a single time when you need to run something:
However, if you need more flexibility when scheduling tasks you should consider using
schtasks
instead. For example, you can only useat
as a local administrator andschtasks
can do everythingat
can do and more.