有什么方法可以输入命令来删除具有特定模式的所有计划任务?

发布于 2024-12-27 00:06:55 字数 107 浏览 2 评论 0原文

我有一个作业,它使用如下字符串创建计划任务:RunOnce072000,其中 072000 是创建计划任务的时间。我需要通过命令行删除计划任务,但无法找到使用通配符执行删除的方法。 有人有什么想法吗?

I have a job which creates a scheduled task with a string like this: RunOnce072000, where 072000 is the time the scheduled task was created. I need to delete the scheduled task by command line but cannot figure out a way to use a wildcard to perform the delete.
Has anyone got any ideas?

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

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

发布评论

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

评论(1

浪菊怪哟 2025-01-03 00:06:55

假设您使用的是 Windows dos 提示符,如果您可以使用“at”(它不会将名称与作业关联起来),您肯定会运行:

at 7:00 "dir foo.txt"
at

因此也许使用 for 循环可以解决您的问题:

set expected_command=%~1

for /f "usebackq skip=2 tokens=1-5" %%a in (`at`) do call:remove_job %%a %%b %%c %%d %%e %%f
goto:eof

:remove_job
    if "%1"=="Erreur" shift
    if "%~4"=="%expected_command%" at %1 /delete
goto:eof

注意引号,如果 at-ed 命令没有参数,则“at”将删除,并删除已翻译的错误状态(那里是法语)。

Assuming you are using a Windows dos prompt, if you can work with "at" (which doesn't associate names with jobs), you will certainly run:

at 7:00 "dir foo.txt"
at

So perhaps using a for loop would solve your problem:

set expected_command=%~1

for /f "usebackq skip=2 tokens=1-5" %%a in (`at`) do call:remove_job %%a %%b %%c %%d %%e %%f
goto:eof

:remove_job
    if "%1"=="Erreur" shift
    if "%~4"=="%expected_command%" at %1 /delete
goto:eof

Take care of the quotes, which "at" removes if there are no arguments to the at-ed command, and of the error state, which is translated (there, in french).

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