用于查找计划任务向导任务信息的脚本

时间:2014-06-24 19:15:08

标签: batch-file vbscript cmd

我知道有一个查找计算机计划任务的命令,但我希望获得有关计划任务本身的更多信息。我想知道计划任务的执行时间和时间与计划任务的名称和区域一致。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

Set TS = CreateObject("Schedule.Service")
TS.Connect("Serenity")

Set rootFolder = TS.GetFolder("\")

Set tasks = rootFolder.GetTasks(0)

If tasks.Count = 0 Then 
    Wscript.Echo "No tasks are registered."
Else
    WScript.Echo "Number of tasks registered: " & tasks.Count

    For Each Task In Tasks
    A=Task.Name
    A = A & " " & Task.NextRunTime
    wscript.echo A
    Next
End If

从“帮助”中,其中一些是包含其他信息的对象。

RegisteredTask

脚本对象,提供用于立即运行任务的方法,获取任务的任何正在运行的实例,获取或设置用于注册任务的凭据以及描述任务的属性。

方法 RegisteredTask对象定义了以下方法。

Method Description 
GetInstances Returns all instances of the registered task that are currently running. 
GetSecurityDescriptor Gets the security descriptor that is used as credentials for the registered task. 
GetRunTimes Gets the times that the registered task is scheduled to run during a specified time. 
SetSecurityDescriptor Sets the security descriptor that is used as credentials for the registered task. 
RunEx Runs the registered task immediately using specified flags and a session identifier. 
Stop Stops the registered task immediately. 
Run Runs the registered task immediately. 

属性 RegisteredTask对象具有以下属性。

Property Description 
Definition Gets the definition of the task. 
Enabled Gets or set a Boolean value that indicates if the registered task is enabled. 
LastRunTime Gets the time the registered task was last run. 
LastTaskResult Gets the results that were returned the last time the registered task was run. 
Name Gets the name of the registered task. 
NextRunTime Gets the time when the registered task is next scheduled to run. 
NumberOfMissedRuns Gets the number of times the registered task has missed a scheduled run. 
Path Gets the path to where the registered task is stored. 
State Gets the operational state of the registered task. 
XML Gets the XML-formatted registration information for the registered task. 

示例代码[C ++] 有关此脚本对象的更多信息和示例代码,请参阅时间触发示例(脚本)和显示任务名称和状态(脚本)。

要求 客户端需要Windows Vista。 类型库使用Taskschd.tlb。

DLL需要Taskschd.dll。

另见 任务计划程序对象 任务计划程序

将有关此主题的评论发送给Microsoft

建造日期:2006年10月2日 语言 C ++

全部显示 要求 客户端需要Windows Vista。 类型库使用Taskschd.tlb。

DLL需要Taskschd.dll 也可以看看 任务计划程序对象 任务计划程序

将有关此主题的评论发送给Microsoft

建造日期:2006年10月2日