当前位置:  开发笔记 > 编程语言 > 正文

如何以编程方式在远程计算机上停止/启动计划任务?

如何解决《如何以编程方式在远程计算机上停止/启动计划任务?》经验,为你挑选了1个好方法。

我想编写一个脚本,它将停止远程计算机上的计划任务,执行一些操作,然后启动计划任务备份.

我该怎么做?



1> Ben Noland..:

这是我发现的.

停:

schtasks /end /s  /tn 

开始:

schtasks /run /s  /tn 


C:\>schtasks /?

SCHTASKS /parameter [arguments]

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

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 immediately.

    /End            Stops the currently running scheduled task.

    /?              Displays this help message.

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

推荐阅读
mobiledu2402851173
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有