Summary: Use Windows PowerShell to find the location of scheduled tasks.
How can I use Windows PowerShell to easily look for scheduled tasks in the graphical tool?
Use the Get-ScheduledTask cmdlet and search on the TaskPath property. Related scheduled tasks are
grouped together and TaskPath provides that location. Here is an example:
Get-ScheduledTask | where taskpath -match 'powershell'