Summary: Use Windows PowerShell to discover the tasks that are associated with your scheduled jobs.
How can I use Windows PowerShell to discover the scheduled tasks that are associated with my scheduled jobs?
In Windows 8 or Windows Server 2012, use the Get-ScheduledTask cmdlet:
£> Get-ScheduledTask -TaskName test1 | Format-List TaskPath, TaskName, State
TaskPath : \Microsoft\Windows\PowerShell\ScheduledJobs\
TaskName : Test1
State : Ready
On earlier operating systems, you need to look in the Task Scheduler, I’m afraid.