使用AT命令时如何定义作业ID
在使用 AT 命令创建任务时如何定义作业的名称/ID?
How is it possible to define the name / ID of a job whilst creating a task with the AT command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法在创建时使用
AT
指定 ID 或名称。不过,您可以使用
SCHTASKS /CREATE
创建任务并使用/TN
开关指定任务名称。有关详细信息,请参阅此处: Schtasks @ MSDNYou can't specify an ID or name at creation with
AT
.You can use
SCHTASKS /CREATE
to create a task and use the/TN
switch to specify a task name, however. See here for more information: Schtasks @ MSDN虽然您无法指定与 AT 命令一起使用的 ID,但您可以使用此脚本来识别 AT 计划任务正在使用的 ID,以便您可以从批处理文件中删除它(假设这是您的目标):
<用法:
只需将 sCommand 设置为您已安排的命令的名称即可。
While you can't specify the ID that is used with the AT command, you can use this script to identify the ID that your AT scheduled task is using so you can delete it from a batch file (assuming that is your objective):
Usage:
Simply set sCommand to the name of the command that you have scheduled.