Get-Scheduled Task Info

Gets run-time information for a scheduled task.

Syntax

Get-ScheduledTaskInfo
   [-TaskName] <String>
   [[-TaskPath] <String>]
   [-CimSession <CimSession[]>]
   [-ThrottleLimit <Int32>]
   [-AsJob]
   [<CommonParameters>]
Get-ScheduledTaskInfo
   [-InputObject] <CimInstance>
   [-CimSession <CimSession[]>]
   [-ThrottleLimit <Int32>]
   [-AsJob]
   [<CommonParameters>]

Description

The Get-ScheduledTaskInfo cmdlet gets the last run-time information for a scheduled task. You can use the TaskName parameter to specify a scheduled task, or you can use the InputObject parameter to specify the scheduled task.

Examples

Example 1: Get run-time information by using a task name

PS C:\> Get-ScheduledTaskInfo -TaskName "\Sample\SchedTask01"

This command gets run-time information for the scheduled task named \Sample\SchedTask01.

Example 2: Get run-time information by using an input object

PS C:\>Get-ScheduledTask -TaskPath "\Sample\" | Get-ScheduledTaskInfo

In this example, the Get-ScheduledTask cmdlet gets all the scheduled tasks in the path \Sample, and pipes the results to the Get-ScheduledTaskInfo cmdlet.

In the second part of the command, the Get-ScheduledTaskInfo cmdlet gets the run-time information for all the scheduled tasks in the path \Sample.

Required Parameters

-InputObject

Specifies the input object that is used in a pipeline command.

Type: CimInstance
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
-TaskName

Specifies a name of a scheduled task.

Type: String
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Optional Parameters

-AsJob

Runs the cmdlet as a background job. Use this parameter to run commands that take a long time to complete.

Type: SwitchParameter
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-CimSession

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or Get-CimSession cmdlet. The default is the current session on the local computer.

Type: CimSession[]
Aliases: Session
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-TaskPath

Specifies a path for a scheduled task in the Task Scheduler namespace.

The root folder in the file path is described as . If you do not specify a file path, the cmdlet uses the root folder.

Type: String
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
-ThrottleLimit

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is entered, then Windows PowerShell® calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.

Type: Int32
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Outputs

Microsoft.Management.Infrastructure.CimInstance#MSFT_TaskDynamicInfo