Scheduled Tasks on systems

looking to generate a report that lists all scheduled tasks and what account they are running under. Need this report for migrations

Parents Reply Children
  • The basic task information is available from WMI under Win32_ScheduledJob which you can grab with Ent Reporter:

    The perennial bugaboo around this requirement is the credentials for the task which are stored elsewhere.  

    With PoSh you can get it like this:

    Get-ScheduledTask <Task Name> | select -ExpandProperty principal | select UserID