使用AT命令时如何定义作业ID

发布于 2024-11-17 01:15:46 字数 34 浏览 4 评论 0原文

在使用 AT 命令创建任务时如何定义作业的名称/ID?

How is it possible to define the name / ID of a job whilst creating a task with the AT command?

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

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

发布评论

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

评论(2

萌酱 2024-11-24 01:15:46

您无法在创建时使用 AT 指定 ID 或名称。

不过,您可以使用SCHTASKS /CREATE 创建任务并使用/TN 开关指定任务名称。有关详细信息,请参阅此处: Schtasks @ MSDN

You 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

爱的故事 2024-11-24 01:15:46

虽然您无法指定与 AT 命令一起使用的 ID,但您可以使用此脚本来识别 AT 计划任务正在使用的 ID,以便您可以从批处理文件中删除它(假设这是您的目标):

Set sCommand=ScheduledCommand.cmd

:LOOP
AT>AT.txt
findstr /I %sCommand% AT.txt>nul
If %ErrorLevel%==1 Goto CONTINUE
FOR /F %%i IN ('findstr /I %sCommand% AT.txt') DO (set ID=%%i)
AT %ID% /D
Goto LOOP

:CONTINUE
DEL AT.txt>nul

<用法:
只需将 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):

Set sCommand=ScheduledCommand.cmd

:LOOP
AT>AT.txt
findstr /I %sCommand% AT.txt>nul
If %ErrorLevel%==1 Goto CONTINUE
FOR /F %%i IN ('findstr /I %sCommand% AT.txt') DO (set ID=%%i)
AT %ID% /D
Goto LOOP

:CONTINUE
DEL AT.txt>nul

Usage:
Simply set sCommand to the name of the command that you have scheduled.

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