Skip to content

Instantly share code, notes, and snippets.

@kkamegawa
Created December 13, 2014 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kkamegawa/e4b1ff93609f128eba9d to your computer and use it in GitHub Desktop.
Save kkamegawa/e4b1ff93609f128eba9d to your computer and use it in GitHub Desktop.
Task Scheduler will run information.
Get-ScheduledTask | Where {$_.State -eq 'Ready'} | Get-ScheduledTaskInfo | where {$_.nextruntime -ne $null} | select taskpath,taskname,nextruntime
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment