Skip to content

Instantly share code, notes, and snippets.

@kkamegawa
Created December 13, 2014 02:10
Embed
What would you like to do?
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