[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[系统相关] 求助批处理schtasks 批量删除 关键词任务

G:\Downtemp\edge>schtasks /query /fo csv |findstr /I MicrosoftEdge
"\MicrosoftEdgeUpdateBrowserReplacementTask","N/A","就绪"
"\MicrosoftEdgeUpdateTaskMachineCore{6FB29BF6-EB3C-4326-AD82-701E4AA30538}","2024/8/19 14:43:42","就绪"
"\MicrosoftEdgeUpdateTaskMachineCore{6FB29BF6-EB3C-4326-AD82-701E4AA30538}","2024/8/19 14:43:42","就绪"
"\MicrosoftEdgeUpdateTaskMachineUA{35251314-FA8F-43D9-AA53-1F684058C880}","2024/8/19 15:13:42","就绪"

因为SID不一样。所以。 请问。批处理如何写  能先从schtasks /query结果 里找到MicrosoftEdgeUpdate里相关的任务删除

PS的话。是
Get-ScheduledTask -taskname MicrosoftEdgeUpdate* | Unregister-ScheduledTask -Confirmfalse

但想用批处理实现这一功能

TOP

  1. @echo off & setlocal enabledelayedexpansion
  2. echo 代码开始
  3. @echo off &for /f "tokens=1* delims=: " %%a in (
  4. ' schtasks /query /fo list^|findstr /irc:".*Windows Defender*.*" ') do (echo,schtasks /delete /tn "%%b" /f)
  5. @echo off &for /f "tokens=1* delims=: " %%a in (
  6. ' schtasks /query /fo list^|findstr /irc:".*MicrosoftEdge*.*" ') do (echo,schtasks /delete /tn "%%b" /f)
  7. @echo off &for /f "tokens=1* delims=: " %%a in (
  8. ' schtasks /query /fo list^|findstr /irc:".*Wps*.*" ') do (echo,schtasks /delete /tn "%%b" /f)
  9. pause
  10. @echo off &for /f "tokens=1* delims=: " %%a in (
  11. ' schtasks /query /fo list^|findstr /irc:".*Windows Defender*.*" ') do (schtasks /delete /tn "%%b" /f)
  12. @echo off &for /f "tokens=1* delims=: " %%a in (
  13. ' schtasks /query /fo list^|findstr /irc:".*MicrosoftEdge*.*" ') do (schtasks /delete /tn "%%b" /f)
  14. @echo off &for /f "tokens=1* delims=: " %%a in (
  15. ' schtasks /query /fo list^|findstr /irc:".*Wps*.*" ') do (schtasks /delete /tn "%%b" /f)
  16. pause
复制代码

TOP

回复 3# ygqiang


    感谢~

TOP

返回列表