Samstag, 19. September 2015

PowerShell Tip of the Day

To get the last run time of all scheduled tasks (and put them in a GridView)

Get-ScheduledTask | ForEach-Object { Get-scheduledtaskInfo $_} | Select TaskName, LastRunTime | Out-GridView

Keine Kommentare:

Kommentar veröffentlichen