如何使用实用程序 schtasks 在 Windows 10 中禁用 Windows 计划任务?

如何使用实用程序 schtasks 在 Windows 10 中禁用 Windows 计划任务?

如何在 Windows 10 中禁用计划任务?他们建议我使用,/disable但显然该选项在 Windows 10 中已经消失,并且在以前的 Windows 版本中可用。

>schtasks  /?

SCHTASKS /parameter [arguments]

Description:
    Enables an administrator to create, delete, query, change, run and
    end scheduled tasks on a local or remote system.

Parameter List:
    /Create         Creates a new scheduled task.

    /Delete         Deletes the scheduled task(s).

    /Query          Displays all scheduled tasks.

    /Change         Changes the properties of scheduled task.

    /Run            Runs the scheduled task on demand.

    /End            Stops the currently running scheduled task.

    /ShowSid        Shows the security identifier corresponding to a scheduled task name.

    /?              Displays this help message.

Examples:
    SCHTASKS
    SCHTASKS /?
    SCHTASKS /Run /?
    SCHTASKS /End /?
    SCHTASKS /Create /?
    SCHTASKS /Delete /?
    SCHTASKS /Query  /?
    SCHTASKS /Change /?
    SCHTASKS /ShowSid /?

我怀疑delete它实际上是否会被禁用。

那我该怎么办呢?

更新:

我需要这样做仅有的由公用事业schtasks

答案1

使用 Powershell!

Disable-ScheduledTask -TaskName "Adobe Flash Player Update"



TaskPath                                       TaskName                          State
--------                                       --------                          -----
\                                              Adobe Flash Player Updater        Disabled

编辑:

使用 schtasks.exe:

schtasks.exe /change /tn "Adobe Flash Player Updater" /disable

SUCCESS: The parameters of scheduled task "Adobe Flash Player Updater" have been changed.

答案2

图形用户界面(GUI):

  1. 打开“任务计划程序”
  2. 打开“任务计划程序库”->“Microsoft”->“Windows”、“应用程序体验”。
  3. 通过右键单击选择禁用“Microsoft Compatibility Appraiser”。

命令:

schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"

答案3

最简单的方法是使用任务计划程序 MMC 管理单元。您可以在 Cortana 搜索框中键入“任务计划程序”,或者运行 mmc.exe 并手动添加管理单元。获取 GUI 后,只需右键单击任务并选择“禁用” - 它仍然在那里,只是隐藏了 :) 我不确定为什么命令行发生了变化 - 很奇怪...

相关内容