how can I by using Powershell, Get the list of all the Jobs that runs from TASK Scheduler with this filters:
- only tasks that runs in the last hour
- from sub TASK Scheduler library that is not Microsoft?
layout needed - name of the job, which time have been run, end time (if ended).
CodePudding user response:
get-scheduledtask|where-object{$_.taskpath -notmatch "^\\Microsoft"}|get-scheduledtaskinfo|where-object{$_.lastruntime -gt (get-date).addhours(-1)}